Skip to content

Commit

Permalink
Quickfix
Browse files Browse the repository at this point in the history
  • Loading branch information
SkogrKrellr committed Jan 9, 2022
1 parent 8bbde7b commit e14f5b4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion setup/setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import json
import os
from database.database import Database
from objects.asset import Asset
from objects.assetManager import AssetManager
Expand All @@ -24,7 +25,8 @@ def setup():


print("Populating tables:")
jsonFile = open('etc/index.json')
os.chdir('etc')
jsonFile = open('index.json')
objects = json.load(jsonFile)
jsonFile.close()

Expand Down
2 changes: 1 addition & 1 deletion test/test_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class TestGenerator(unittest.TestCase):

@classmethod
def setUpClass(self):
print("\nGenerate: ", end='')
print("\nGenerate (last one takes ~30s, be patient!): ", end='')
self.maxDiff = None

self.customObjects = {
Expand Down

0 comments on commit e14f5b4

Please sign in to comment.