More type annotations.
[python_utils.git] / function_utils.py
index 5b709819026659ec024f889eb3ea107c249c6543..f027f8ce9d07fd22c7d18af2cccc0f92413115d9 100644 (file)
@@ -19,6 +19,7 @@ def function_identifier(f: Callable) -> str:
     if f.__module__ == '__main__':
         from pathlib import Path
         import __main__
+
         module = __main__.__file__
         module = Path(module).stem
         return f'{module}:{f.__name__}'