mirror of
https://github.com/zen-browser/theme-store.git
synced 2025-07-07 17:05:31 +02:00
6 lines
No EOL
229 B
Python
6 lines
No EOL
229 B
Python
|
|
def ensure_packages_have_version(theme_data):
|
|
if 'version' not in theme_data:
|
|
print(" Version is required in theme.json. Adding default value of 1.0.0.")
|
|
theme_data['version'] = '1.0.0'
|
|
return theme_data |