Skip to content

Commit

Permalink
Missing import
Browse files Browse the repository at this point in the history
  • Loading branch information
costrouc committed Aug 2, 2023
1 parent cc42872 commit 9c78594
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/_nebari/render.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def inspect_files(
output_base_dir: str,
ignore_filenames: List[str] = None,
ignore_directories: List[str] = None,
deleted_paths: List[Path] = None,
deleted_paths: List[pathlib.Path] = None,
contents: Dict[str, str] = None,
):
"""Return created, updated and untracked files by computing a checksum over the provided directory.
Expand All @@ -124,7 +124,7 @@ def inspect_files(
output_files = {}

def list_files(
directory: Path, ignore_filenames: List[str], ignore_directories: List[str]
directory: pathlib.Path, ignore_filenames: List[str], ignore_directories: List[str]
):
for path in directory.rglob("*"):
if not path.is_file():
Expand Down

0 comments on commit 9c78594

Please sign in to comment.