don't create a client when simulating

This commit is contained in:
Lynne 2019-05-12 00:54:27 +10:00
parent 8fe30f0c88
commit 2b2824a73e
No known key found for this signature in database
GPG key ID: FB7B970303ACE499

3
gen.py
View file

@ -15,6 +15,9 @@ args = parser.parse_args()
cfg = json.load(open('config.json')) cfg = json.load(open('config.json'))
client = None
if not args.simulate:
client = Mastodon( client = Mastodon(
client_id=cfg['client']['id'], client_id=cfg['client']['id'],
client_secret=cfg['client']['secret'], client_secret=cfg['client']['secret'],