fix linting issues from #79 #79

Open
srsh wants to merge 8 commits from upgrade into main
Showing only changes of commit 8540623961 - Show all commits

View File

@ -37,7 +37,7 @@ class ApiTest(unittest.TestCase):
# print(statement)
# max_skill = db.session.Skill().order_by(Skill.id.desc()).first()
# max_skill = Skill.query.order_by(Skill.id.desc()).first() # TODO: problematic
with db.session.no_autoflush: # only works on first test run
with db.session.no_autoflush: # only works on first test run
max_skill = db.session.query(Skill).order_by(Skill.id.desc()).first() # TODO: also problematic,
# skills = db.session.execute(db.select(Skill)).scalars()
# print(max_skill)