Skip to content

Commit

Permalink
Fix async artifacts tests for Python < 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
bjoernricks committed Oct 25, 2022
1 parent 3a46a44 commit 9ffe500
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/github/api/test_artifacts.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

# pylint: disable=too-many-lines
# pylint: disable=redefined-builtin

import unittest
from pathlib import Path
Expand All @@ -26,7 +26,7 @@
from pontos.github.api import GitHubRESTApi
from pontos.github.api.artifacts import GitHubAsyncRESTArtifacts
from pontos.helper import DEFAULT_TIMEOUT
from tests import AsyncIteratorMock, AsyncMock
from tests import AsyncIteratorMock, AsyncMock, aiter, anext
from tests.github.api import (
GitHubAsyncRESTTestCase,
create_response,
Expand Down

0 comments on commit 9ffe500

Please sign in to comment.