Since this thing is on the innerwebs I suppose it should have a
[python_utils.git] / tests / centcount_test.py
index 3122b984c4459e046068ee7adbbb9cffcea819dc..53204c9fdb8fcbf3f64db5d68523b310480c0d5b 100755 (executable)
@@ -1,13 +1,16 @@
 #!/usr/bin/env python3
 
+# © Copyright 2021-2022, Scott Gasch
+
+"""centcount unittest."""
+
 import unittest
 
-from type.centcount import CentCount
 import unittest_utils as uu
+from type.centcount import CentCount
 
 
 class TestCentCount(unittest.TestCase):
-
     def test_basic_utility(self):
         amount = CentCount(1.45)
         another = CentCount.parse("USD 1.45")