Skip to content

Commit

Permalink
style: fix flake8 bad quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
thrau committed Aug 31, 2021
1 parent 0ed6935 commit efd7f7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions localstripe/resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def _api_delete(cls, id):
if key not in store.keys():
raise UserError(404, 'Not Found')
del store[key]
return {"deleted": True, "id": id}
return {'deleted': True, 'id': id}

@classmethod
def _api_list_all(cls, url, limit=None, starting_after=None, **kwargs):
Expand Down Expand Up @@ -2300,7 +2300,7 @@ def __init__(self, amount=None, currency=None, description=None,
# manually created
self.automatic = False
# Balance Transactions are no implemented yet so we fake one
self.balance_transaction = f"txn_{random_id(24)}"
self.balance_transaction = f'txn_{random_id(24)}'

self.failure_balance_transaction = None
self.failure_code = None
Expand Down

0 comments on commit efd7f7f

Please sign in to comment.