From 0d2096aed60766c5be84bd2e4db108e3d0c07fcb Mon Sep 17 00:00:00 2001 From: Rob Hallam <0504004h@student.gla.ac.uk> Date: Fri, 23 Aug 2024 22:40:20 +0100 Subject: [PATCH] =?UTF-8?q?refactor!:=20rename=20video=5Fproducers=20?= =?UTF-8?q?=E2=86=92=20producers?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Since it no longer simply produces videos this name is preferred Also update tests to use updated module name --- pipeline/{video_producers.py => producers.py} | 0 test/test_producers.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename pipeline/{video_producers.py => producers.py} (100%) diff --git a/pipeline/video_producers.py b/pipeline/producers.py similarity index 100% rename from pipeline/video_producers.py rename to pipeline/producers.py diff --git a/test/test_producers.py b/test/test_producers.py index 5f7d4ce..d0af2cf 100644 --- a/test/test_producers.py +++ b/test/test_producers.py @@ -1,6 +1,6 @@ """test_producers.py -- test the producers in the pipeline (eg ffmpeg, visualisation, json)""" import unittest -import pipeline.video_producers as producers +import pipeline.producers as producers import test.mocks as mocks