1
0
Fork 0

Fix new warnings from pylint upgrade

This commit is contained in:
Bart Schuurmans 2024-04-26 13:59:16 +02:00
parent c32f9faaa0
commit acae063652
6 changed files with 21 additions and 26 deletions

View file

@ -225,4 +225,4 @@ def get_goal_status(user, year):
if goal.privacy != "public":
return None
return dict(**goal.progress, **{"goal": goal.goal})
return {**goal.progress, **{"goal": goal.goal}}