Skip to content

Commit

Permalink
ui: ndc: fix wrong imports generated by pycharm
Browse files Browse the repository at this point in the history
These resolve when run from the tree but not when built.
  • Loading branch information
mnamici committed Dec 17, 2024
1 parent f56f30c commit 2ea54cd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions eddy/ui/ndc/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@
URIRef,
)

from core.ndc import (
from eddy.core.common import HasWidgetSystem
from eddy.core.functions.signals import connect
from eddy.core.ndc import (
Agent,
NDCDataset,
)
from eddy.core.common import HasWidgetSystem
from eddy.core.functions.signals import connect
from eddy.ui.fields import StringField


Expand Down
6 changes: 3 additions & 3 deletions eddy/ui/ndc/distribution.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@
URIRef,
)

from core.ndc import (
from eddy.core.common import HasWidgetSystem
from eddy.core.functions.signals import connect
from eddy.core.ndc import (
Distribution,
NDCDataset,
)
from eddy.core.common import HasWidgetSystem
from eddy.core.functions.signals import connect
from eddy.ui.fields import StringField


Expand Down
6 changes: 3 additions & 3 deletions eddy/ui/ndc/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@
URIRef,
)

from core.ndc import (
from eddy.core.common import HasWidgetSystem
from eddy.core.functions.signals import connect
from eddy.core.ndc import (
Project,
NDCDataset,
)
from eddy.core.common import HasWidgetSystem
from eddy.core.functions.signals import connect
from eddy.ui.fields import StringField


Expand Down

0 comments on commit 2ea54cd

Please sign in to comment.