diff options
| author | seth <[email protected]> | 2023-01-10 16:14:27 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-01-10 16:14:27 -0500 |
| commit | f8ec573be54dd6b772c950479b090dbf2a2917c7 (patch) | |
| tree | 73ebb67def80e0399bffea6259a5e85921b8e5e0 | |
| parent | cd83a6e250423965f298a4011a1f90f68d6a7868 (diff) | |
fix: ignore __pycache__ too
| -rw-r--r-- | src/guzzle_api/teawie/lib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/guzzle_api/teawie/lib.py b/src/guzzle_api/teawie/lib.py index 9dda94b..556cdcc 100644 --- a/src/guzzle_api/teawie/lib.py +++ b/src/guzzle_api/teawie/lib.py @@ -15,7 +15,7 @@ def list_teawies(limit: int) -> list[Path]: for i, file in enumerate(files.iterdir()): if i >= limit: break - if file.name == "__init__.py": + if file.name in ("__init__.py", "__pycache__"): continue res.append(file) |
