Since this thing is on the innerwebs I suppose it should have a
[python_utils.git] / directory_filter.py
index 6985831fc3a6e3d8fe24550c831293e40383b9a6..69e5547255e20ac66cfea81658867c8697501126 100644 (file)
@@ -1,10 +1,14 @@
 #!/usr/bin/env python3
 
+# © Copyright 2021-2022, Scott Gasch
+
 """Two predicates that can help avoid unnecessary disk I/O by
 detecting if a particular file is identical to the contents about to
 be written or if a particular directory already contains a file that
 is identical to the one to be written.  See class docs below for
-examples."""
+examples.
+
+"""
 
 import hashlib
 import logging