Skip to content

Commit

Permalink
fix simple typo
Browse files Browse the repository at this point in the history
  • Loading branch information
burak-upstash committed Jul 2, 2023
1 parent 61ef20b commit 694fe48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "upstash_redis"
version = "0.13.1"
version = "0.13.2"
description = "Serverless Redis Sdk from Upstash"
authors = ["Upstash <[email protected]>", "Zgîmbău Tudor <[email protected]>"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion upstash_redis/utils/format.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def format_server_time_return(raw: List[str], command=None) -> Dict[str, int]:
return {"seconds": int(raw[0]), "microseconds": int(raw[1])}


def format_sorted_set_return(raw: List[str], command=None) -> list[Tuple[str, float]]:
def format_sorted_set_return(raw: List[str], command=None) -> List[Tuple[str, float]]:
"""
Format the raw output given by Sorted Set commands, usually the ones that return the member-score
pairs of Sorted Sets.
Expand Down

0 comments on commit 694fe48

Please sign in to comment.