Skip to content

Commit

Permalink
🎛️ Rename allow_remaining parameter.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexjc committed Oct 13, 2021
1 parent c3149f6 commit 7ef74e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def find_all_materials(self):
scanner = MaterialScanner(
exclude=self.ignore_default + cscan.get("ignore", []),
allow_variations=False,
allow_remaining=cscan.get("remaining", []),
allow_remaining=cscan.get("allow_remaining", []),
)

library = MaterialLibrary(
Expand All @@ -67,7 +67,7 @@ def find_all_materials(self):
yield filenames, info

except FileNotFoundError as exc:
print("ERROR:", path, exc)
print("WARNING:", path, exc)
continue


Expand Down

0 comments on commit 7ef74e5

Please sign in to comment.