Skip to content

Commit 9d22796

Browse files
committed
removed relative import above namespace
1 parent b98dd2b commit 9d22796

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pydra/environments/docker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import typing as ty
22
import logging
33
from pydra.compose import shell
4-
from . import base
4+
from pydra.environments import base
55

66
logger = logging.getLogger("pydra")
77

pydra/environments/native.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import typing as ty
22
import logging
33
from pydra.compose import shell
4-
from . import base
4+
from pydra.environments import base
55

66
logger = logging.getLogger("pydra")
77

pydra/environments/singularity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import typing as ty
22
import logging
33
from pydra.compose import shell
4-
from . import base
4+
from pydra.environments import base
55

66
logger = logging.getLogger("pydra")
77

0 commit comments

Comments
 (0)