Skip to content

Commit

Permalink
Merge pull request #277 from Webperf-se/276-syntax-error-in-modelspy
Browse files Browse the repository at this point in the history
Update models.py
  • Loading branch information
7h3Rabbit authored Mar 8, 2024
2 parents d06fd7a + 1cad850 commit 4c2dac0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def __init__(self, domain, method, precision, category, name, version, issues):
self.info['issues'] = issues

def __str__(self) -> str:
return f'DefaultInfo(name={self.info['name']}, version={self.info['version']})'
return f"DefaultInfo(name={self.info['name']}, version={self.info['version']})"

def __setitem__(self, key, value):
self.info[key] = value
Expand Down

0 comments on commit 4c2dac0

Please sign in to comment.