diff --git a/src/emr_cli/utils/__init__.py b/src/emr_cli/utils/__init__.py index 8a81a88..465d90b 100644 --- a/src/emr_cli/utils/__init__.py +++ b/src/emr_cli/utils/__init__.py @@ -35,10 +35,7 @@ def copy_template(source: str, target_dir: str): """ Copies the entire `source` directory to `target_dir`. """ - source = os.path.abspath( - Path(__file__).parent.parent / "templates" / source - ) + source = os.path.abspath(Path(__file__).parent.parent / "templates" / source) copytree( source, target_dir, dirs_exist_ok=True, ignore=ignore_patterns("__pycache__") ) - )