1
Fork 0
mirror of https://github.com/Steffo99/lihzahrd.git synced 2024-11-21 23:54:23 +00:00

PEP8 changes so PyCharm doesn't complain

This commit is contained in:
Steffo 2020-06-04 22:36:41 +02:00
parent ac18c134dd
commit a619658e28
Signed by: steffo
GPG key ID: 896A80F55F7C97F0

View file

@ -218,7 +218,7 @@ class World:
self.bestiary: Bestiary = bestiary self.bestiary: Bestiary = bestiary
"""Information about the bestiary, including sightings, kills and takling to NPCs.""" """Information about the bestiary, including sightings, kills and takling to NPCs."""
self.journey_powers: JourneyPowers= journey_powers self.journey_powers: JourneyPowers = journey_powers
"""Status of powers available in Journey mode.""" """Status of powers available in Journey mode."""
def __repr__(self): def __repr__(self):
@ -560,7 +560,8 @@ class World:
new_bg_4 = f.int1() new_bg_4 = f.int1()
new_bg_5 = f.int1() new_bg_5 = f.int1()
backgrounds = Backgrounds(bg_underground_snow=bg_underground_snow, backgrounds = Backgrounds(
bg_underground_snow=bg_underground_snow,
bg_underground_jungle=bg_underground_jungle, bg_underground_jungle=bg_underground_jungle,
bg_hell=bg_hell, bg_hell=bg_hell,
bg_forest=bg_forest, bg_forest=bg_forest,
@ -575,11 +576,13 @@ class World:
new_bg_2=new_bg_2, new_bg_2=new_bg_2,
new_bg_3=new_bg_3, new_bg_3=new_bg_3,
new_bg_4=new_bg_4, new_bg_4=new_bg_4,
new_bg_5=new_bg_5,) new_bg_5=new_bg_5,
)
combat_book_used = f.bool() combat_book_used = f.bool()
saved_npcs = SavedNPCs(goblin_tinkerer=saved_goblin_tinkerer, saved_npcs = SavedNPCs(
goblin_tinkerer=saved_goblin_tinkerer,
wizard=saved_wizard, wizard=saved_wizard,
mechanic=saved_mechanic, mechanic=saved_mechanic,
angler=saved_angler, angler=saved_angler,
@ -587,7 +590,8 @@ class World:
tax_collector=saved_tax_collector, tax_collector=saved_tax_collector,
bartender=saved_bartender, bartender=saved_bartender,
golfer=saved_golfer, golfer=saved_golfer,
advanced_combat=combat_book_used) advanced_combat=combat_book_used
)
lantern_night = LanternEvent(f.int4(), f.bool(), f.bool(), f.bool()) lantern_night = LanternEvent(f.int4(), f.bool(), f.bool(), f.bool())