Easier and more self documenting patterns for loading/saving Persistent
[python_utils.git] / function_utils.py
index f10776211df3ef8347d48486671577bc18d044bc..a8ab0c74cfc50cb53b1e5b1b3f4dc49a8c9fc51e 100644 (file)
@@ -1,5 +1,7 @@
 #!/usr/bin/env python3
 
+# © Copyright 2021-2022, Scott Gasch
+
 """Helper methods dealing with functions."""
 
 from typing import Callable
@@ -16,8 +18,8 @@ def function_identifier(f: Callable) -> str:
 
     >>> function_identifier(function_identifier)
     'function_utils:function_identifier'
-
     """
+
     if f.__module__ == '__main__':
         from pathlib import Path