Browse Source

Linter showing unused/un-needed variables.

Steve Thielemann 5 years ago
parent
commit
ac4e271aff
1 changed files with 4 additions and 4 deletions
  1. 4 4
      galaxy.py

+ 4 - 4
galaxy.py

@@ -345,8 +345,8 @@ class GameData(object):
     def port_trade_show(self, sector: int, warp: int):
         sector_port = self.ports[sector]
         warp_port = self.ports[warp]
-        sector_pct = GameData.port_pct(sector_port)
-        warp_pct = GameData.port_pct(warp_port)
+        # sector_pct = GameData.port_pct(sector_port)
+        # warp_pct = GameData.port_pct(warp_port)
         return "{0} \xae\xcd\xaf {1}".format(
             GameData.port_show_part(sector, sector_port),
             GameData.port_show_part(warp, warp_port),
@@ -354,8 +354,8 @@ class GameData(object):
 
     @staticmethod
     def port_show(sector: int, sector_port: dict, warp: int, warp_port: dict):
-        sector_pct = GameData.port_pct(sector_port)
-        warp_pct = GameData.port_pct(warp_port)
+        # sector_pct = GameData.port_pct(sector_port)
+        # warp_pct = GameData.port_pct(warp_port)
         return "{0} -=- {1}".format(
             GameData.port_show_part(sector, sector_port),
             GameData.port_show_part(warp, warp_port),