Skip to content

Commit

Permalink
fix: unterminated string
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTheBuidler authored Apr 23, 2024
1 parent 46218f2 commit 3ecf667
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion a_sync/primitives/queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def __init__(
def __repr__(self) -> str:
repr_string = f"<{type(self).__name__}"
if self._name:
repr_str += f" name={self._name}
repr_str += f" name={self._name}"
repr_str += f" func={self.func} num_workers={self.num_workers}"
if self._unfinished_tasks:
repr_str += f" pending={self._unfinished_tasks}"
Expand Down

0 comments on commit 3ecf667

Please sign in to comment.