Compare commits

..

2 Commits

Author SHA1 Message Date
07a2bf7e38 Merge pull request 'Fixed wrong json key being pulled (I forgot to replace the old name)' (#13) from json-key-fix into master
Reviewed-on: #13
Reviewed-by: AllfatherHatt <allfatherhatt@noreply.localhost>
2026-02-04 12:32:49 +01:00
8bec9a159b Fixed wrong json key being pulled (I forgot to replace the old name) 2026-02-04 12:10:34 +01:00

View File

@ -32,7 +32,7 @@ def is_convertable(activity: str) -> bool:
"""
filename = activity_units_path(activity)
raw_data = json.load(open(filename))
return raw_data.get("transformable")
return raw_data.get("convertable")