Skip to content

Commit

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

* Revert python and flask-marshmallow upgrades

- These two introduced breaking changes

* bump utils version

* Update lock file

* Fix typing issue

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: wbanks <[email protected]>
Co-authored-by: William B <[email protected]>
  • Loading branch information
3 people authored Jun 18, 2024
1 parent 0800b98 commit 9d87116
Show file tree
Hide file tree
Showing 4 changed files with 315 additions and 255 deletions.
2 changes: 1 addition & 1 deletion app/encryption.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def sign_with_all_keys(self, to_sign: str | NotificationDictToSign) -> List[str
Returns:
List[str | bytes]: A list of signed values.
"""
signed = []
signed: list[str | bytes] = []
for k in reversed(self.secret_key): # reversed so that the default key is last
signed.append(URLSafeSerializer(k).dumps(to_sign, salt=self.salt))
return signed
Expand Down
Loading

0 comments on commit 9d87116

Please sign in to comment.