Skip to content

Commit

Permalink
Refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
aBozowski committed Oct 19, 2023
1 parent 024eeb6 commit c480a02
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from capture.loader import CaptureImplsLoader
from .streams_base import AndroidStream
from .base import AndroidStream

impl_loader = CaptureImplsLoader(
__path__[0],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from capture.shell_utils import Bash
from typing import TYPE_CHECKING
from ... import config
from ..streams_base import AndroidStream
from ..base import AndroidStream

if TYPE_CHECKING:
from capture.platform.android import Android
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

from capture.file_utils import create_standard_log_name
from typing import TYPE_CHECKING
from ..streams_base import AndroidStream
from ..base import AndroidStream


if TYPE_CHECKING:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from capture import log_format
from capture.file_utils import create_standard_log_name
from typing import TYPE_CHECKING
from ..streams_base import AndroidStream
from ..base import AndroidStream

if TYPE_CHECKING:
from capture.platform.android import Android
Expand Down

0 comments on commit c480a02

Please sign in to comment.