Since this thing is on the innerwebs I suppose it should have a
[python_utils.git] / tests / letter_compress_test.py
index a466277704c252377cda349489e86d60a5c22752..1a47ba4f9c43e3104673ba70b916196eefdc1999 100755 (executable)
@@ -1,7 +1,11 @@
 #!/usr/bin/env python3
 
-import random
+# © Copyright 2021-2022, Scott Gasch
+
+"""letter_compress unittest."""
+
 import math
+import random
 import unittest
 
 import bootstrap
@@ -10,7 +14,6 @@ import unittest_utils as uu
 
 
 class TestLetterCompress(unittest.TestCase):
-
     def test_with_random_strings(self):
         alphabet = 'abcdefghijklmnopqrstuvwxyz .,"-'
         for n in range(20):