diff --git a/twitter/config/settings.py b/twitter/config/settings.py index 1301e1a..b79c268 100644 --- a/twitter/config/settings.py +++ b/twitter/config/settings.py @@ -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", diff --git a/twitter/config/update_operations.py b/twitter/config/update_operations.py index c2bb747..32986ed 100644 --- a/twitter/config/update_operations.py +++ b/twitter/config/update_operations.py @@ -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