Skip to content

Commit

Permalink
results() should not be async
Browse files Browse the repository at this point in the history
  • Loading branch information
albireox committed Sep 12, 2024
1 parent 8c7f444 commit 63f1e91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sdsstools/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def create_task(self, coro):

return task

Check warning on line 178 in src/sdsstools/utils.py

View check run for this annotation

Codecov / codecov/patch

src/sdsstools/utils.py#L178

Added line #L178 was not covered by tests

async def results(self):
def results(self):

Check warning on line 180 in src/sdsstools/utils.py

View check run for this annotation

Codecov / codecov/patch

src/sdsstools/utils.py#L180

Added line #L180 was not covered by tests
"""Returns the results of the tasks in the same order they were created."""

if self._joined:
Expand Down

0 comments on commit 63f1e91

Please sign in to comment.