PEP 488 – Elimination of PYO files

Python 3.5 implememted PEP 488, eliminating .pyo files.
This commit is contained in:
j-t-1
2024-12-05 18:31:04 +00:00
committed by GitHub
parent 3ff304ceed
commit 5acf8858d9
-1
View File
@@ -164,7 +164,6 @@ def _filter_files(filename: str):
return (
filename.endswith(".py")
or filename.endswith(".pyc")
or filename.endswith(".pyo")
) and not filename.startswith("__")