update settings

This commit is contained in:
trevorhobenshield
2023-03-11 17:51:53 -08:00
parent 24a23f8e81
commit 6281ae59b3
2 changed files with 2 additions and 2 deletions

View File

@@ -61,7 +61,6 @@ content_settings = {
'allow_location_history_personalization': False,
}
notification_settings = {
"device": "false",
"cursor": "-1",
"include_profile_interstitial_type": "1",
"include_blocking": "1",

View File

@@ -42,7 +42,7 @@ def get_operations() -> list[dict]:
def update_operations(path=Path('operations.json')):
"""
Update operations.json with queryId and feature definitions
@param path: path to operations operations file
@param path: path to operations file
@return: updated operations
"""
operations = get_operations()
@@ -68,6 +68,7 @@ def update_operations(path=Path('operations.json')):
def main() -> int:
update_operations()
# todo: currently need to manually convert json to python file
return 0