Skip to content

Commit

Permalink
linted
Browse files Browse the repository at this point in the history
Signed-off-by: Francisco Javier Arceo <franciscojavierarceo@users.noreply.github.com>
  • Loading branch information
franciscojavierarceo committed Jun 13, 2024
1 parent f34477f commit 966a0bf
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion sdk/python/feast/repo_operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,14 @@ def get_repo_files(repo_root: Path) -> List[Path]:
# Read ignore paths from .feastignore and create a set of all files that match any of these paths
ignore_paths = read_feastignore(repo_root)
ignore_files = get_ignore_files(repo_root, ignore_paths)
ignore_paths += [".git", ".feastignore", ".venv", ".pytest_cache", "__pycache__", ".ipynb_checkpoints"]
ignore_paths += [
".git",
".feastignore",
".venv",
".pytest_cache",
"__pycache__",
".ipynb_checkpoints",
]

# List all Python files in the root directory (recursively)
repo_files = {
Expand Down

0 comments on commit 966a0bf

Please sign in to comment.