Skip to content

Commit

Permalink
fix: need old typing
Browse files Browse the repository at this point in the history
  • Loading branch information
brandon-doist committed Jul 30, 2024
1 parent 3d576a2 commit 3d35e7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sqs_workers/queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ def process_messages(self, messages: List[Any]) -> bool:
"""
raise NotImplementedError()

def get_raw_messages(self, wait_seconds: int, max_messages: int = 10) -> list[Any]:
def get_raw_messages(self, wait_seconds: int, max_messages: int = 10) -> List[Any]:
"""Return raw messages from the queue, addressed by its name"""
queue = self.get_queue()

Expand Down

0 comments on commit 3d35e7f

Please sign in to comment.