Skip to content

Commit

Permalink
apply black & isort
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 16, 2023
1 parent 88b7ae2 commit aaa0fe0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion resources.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
import pickle
from collections import Counter

serverResources = {'quela': {'Food': '-1068', 'Wood': '449', 'Gold': '-826', 'Stone': '12'}, 'bshammer': {'Food': '-1250', 'Wood': '-1173', 'Gold': '-850', 'Stone': '1942'}, 'probablybutter': {'Food': '295', 'Wood': '-2024', 'Gold': '-1006', 'Stone': '-2044'}, 'olaf_the_shrew': {'Food': '323', 'Wood': '0', 'Gold': '0', 'Stone': '0'}, '.harristotle': {'Food': '-2241', 'Wood': '560', 'Gold': '-986', 'Stone': '-706'}}
serverResources = {
"quela": {"Food": "-1068", "Wood": "449", "Gold": "-826", "Stone": "12"},
"bshammer": {"Food": "-1250", "Wood": "-1173", "Gold": "-850", "Stone": "1942"},
"probablybutter": {"Food": "295", "Wood": "-2024", "Gold": "-1006", "Stone": "-2044"},
"olaf_the_shrew": {"Food": "323", "Wood": "0", "Gold": "0", "Stone": "0"},
".harristotle": {"Food": "-2241", "Wood": "560", "Gold": "-986", "Stone": "-706"},
}
try:
with open("gizmoResources", "rb") as f:
gizmoResources = pickle.load(f)
Expand Down

0 comments on commit aaa0fe0

Please sign in to comment.