We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbd2103 commit e8900f9Copy full SHA for e8900f9
tests/test_utils.py
@@ -1,7 +1,8 @@
1
-import unittest
2
-from unittest.mock import patch, mock_open
3
import os
4
-from utils import save_to_json, normalize_to_camel_case, normalize_date_format
+import unittest
+from unittest.mock import mock_open, patch
+
5
+from utils import normalize_date_format, normalize_to_camel_case, save_to_json
6
7
8
class TestUtilsFunctions(unittest.TestCase):
@@ -38,5 +39,5 @@ def test_normalize_date_format_invalid(self):
38
39
self.assertEqual(result, "invalid date")
40
41
-if __name__ == '__main__':
42
+if __name__ == "__main__":
43
unittest.main()
0 commit comments