Skip to content

Commit

Permalink
(general) More flake8 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ahyangyi committed Oct 30, 2023
1 parent b2d38f5 commit 049e861
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion industry/aegis_gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def main():
economy = meta_economy.get_economy(variation)
try:
validate(economy)
except AssertionError as e:
except AssertionError:
print(f"Economy: {meta_economy.name}")
for k, v in variation.items():
print(f"{k}: {v}")
Expand Down
1 change: 0 additions & 1 deletion industry/economies/firs_arctic.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
fertiliser,
fish,
food,
goods,
mail,
paper,
passengers,
Expand Down
2 changes: 0 additions & 2 deletions industry/economies/firs_temperate.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@
metal_workshop,
orchard_and_piggery,
port,
power_station,
sawmill,
scrap_yard,
steel_mill,
stockyard,
Expand Down
2 changes: 1 addition & 1 deletion industry/industries/forest/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import grf
from industry.lib.industry import AIndustry, SplitDefinition, transcribe, symmetrize
from industry.lib.industry import AIndustry, SplitDefinition, transcribe
from .enormous import enormous_set
from .huge import huge_set
from .large import large_set
Expand Down

0 comments on commit 049e861

Please sign in to comment.