Skip to content

Commit

Permalink
chore(deps): update all minor dependencies (#1572)
Browse files Browse the repository at this point in the history
* chore(deps): update all minor dependencies

* Fix flake8 complaints

* Bump utils version number to 52.0.6

* update lock file

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: wbanks <[email protected]>
  • Loading branch information
renovate[bot] and whabanks authored Aug 17, 2023
1 parent 0a628ed commit 92c141a
Show file tree
Hide file tree
Showing 6 changed files with 1,693 additions and 1,947 deletions.
2 changes: 1 addition & 1 deletion app/notify_client/user_api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ def get_last_email_login_datetime(self, user_id):
value = redis_client.get(self._last_email_login_key_name(user_id))
if value is None:
return None
if type(value) == bytes:
if isinstance(value, bytes):
value = value.decode("utf-8")
return datetime.fromisoformat(value)

Expand Down
Loading

0 comments on commit 92c141a

Please sign in to comment.