Skip to content

Commit

Permalink
ah
Browse files Browse the repository at this point in the history
  • Loading branch information
almarklein committed Mar 8, 2024
1 parent be9fe3d commit 4a5f59e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ def black_wrapper(writeback):
def clear_binaries_dir(target_dir):
assert os.path.isdir(target_dir)
for fname in os.listdir(target_dir):
if fname != "README.md":
if fname not in ["README.md", "__init__.py"]:
print("Removing", fname, "...", end="")
os.remove(os.path.join(target_dir, fname))
print("done")
Expand Down

0 comments on commit 4a5f59e

Please sign in to comment.