diff options
| -rw-r--r-- | Biz/PodcastItLater/TestMetricsView.py | 4 | ||||
| -rw-r--r-- | Biz/PodcastItLater/UI.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Biz/PodcastItLater/TestMetricsView.py b/Biz/PodcastItLater/TestMetricsView.py index b452feb..c6fdd46 100644 --- a/Biz/PodcastItLater/TestMetricsView.py +++ b/Biz/PodcastItLater/TestMetricsView.py @@ -109,7 +109,7 @@ class TestMetricsView(BaseWebTest): self.assertEqual(response.headers["Location"], "/") -def test() -> None: +def main() -> None: """Run the tests.""" Test.run( Web.area, @@ -118,4 +118,4 @@ def test() -> None: if __name__ == "__main__": - test() + main() diff --git a/Biz/PodcastItLater/UI.py b/Biz/PodcastItLater/UI.py index ff9301d..e9ef27d 100644 --- a/Biz/PodcastItLater/UI.py +++ b/Biz/PodcastItLater/UI.py @@ -4,7 +4,7 @@ PodcastItLater Shared UI Components. Common UI components and utilities shared across web pages. """ -# : out podcastitlater-ui +# : lib # : dep ludic import Biz.PodcastItLater.Core as Core import ludic.html as html |
