Skip to content

Commit d867579

Browse files
authored
style: 💄 lint
fix lint
1 parent b85da4e commit d867579

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/basicts_test/test_launcher.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99

1010

1111
class TestLauncher(unittest.TestCase):
12+
"""
13+
Test cases for the launcher.
14+
"""
1215

1316
@patch('basicts.launcher.get_logger')
1417
@patch('basicts.launcher.os.path.exists')
@@ -84,4 +87,4 @@ def test_evaluation_func(self, mock_path_exists, mock_get_logger):
8487
mock_runner.test_pipeline.assert_called_once_with(cfg=test_cfg, save_metrics=True, save_results=True)
8588

8689
if __name__ == '__main__':
87-
unittest.main()
90+
unittest.main()

0 commit comments

Comments
 (0)