Skip to content

Commit

Permalink
Fix: Local pathfinding not working on github
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielschowe committed Sep 17, 2024
1 parent a5324eb commit 796639b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions pontos/github/api/packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

from typing import AsyncIterator

from ....pontos.github.api.client import GitHubAsyncREST
from ....pontos.github.api.errors import GitHubApiError
from ....pontos.github.models.packages import Package, PackageType, PackageVersion
from pontos.github.api.client import GitHubAsyncREST
from pontos.github.api.errors import GitHubApiError
from pontos.github.models.packages import Package, PackageType, PackageVersion


class GitHubAsyncRESTPackages(GitHubAsyncREST):
Expand Down
10 changes: 5 additions & 5 deletions tests/github/api/test_packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
# SPDX-License-Identifier: GPL-3.0-or-later
#

from ....pontos.github.api.packages import GitHubAsyncRESTPackages
from ....pontos.github.models.packages import (
from pontos.github.api.packages import GitHubAsyncRESTPackages
from pontos.github.models.packages import (
Package,
PackageType,
PackageVersion,
PackageVisibility,
)
from ....pontos.testing import AsyncIteratorMock
from ....tests import aiter, anext
from ....tests.github.api import GitHubAsyncRESTTestCase, create_response
from pontos.testing import AsyncIteratorMock
from tests import aiter, anext
from tests.github.api import GitHubAsyncRESTTestCase, create_response

from .test_organizations import MEMBER_DICT, REPOSITORY_DICT

Expand Down

0 comments on commit 796639b

Please sign in to comment.