this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Reformatted with Black

+3 -4
+3 -4
twitter_to_sqlite/cli.py
··· 688 688 search_args[key] = value 689 689 690 690 args_hash = hashlib.sha1( 691 - json.dumps(search_args, sort_keys=True, separators=(",", ":")).encode( 692 - "utf8" 693 - ) 691 + json.dumps(search_args, sort_keys=True, separators=(",", ":")).encode("utf8") 694 692 ).hexdigest() 695 693 696 694 if since and db["search_runs_tweets"].exists: ··· 701 699 select max(tweet) from search_runs_tweets where search_run in ( 702 700 select id from search_runs where hash = ? 703 701 ) 704 - """, [args_hash] 702 + """, 703 + [args_hash], 705 704 ).fetchall()[0][0] 706 705 except IndexError: 707 706 pass