Skip to content
This repository has been archived by the owner on Sep 7, 2022. It is now read-only.

Commit

Permalink
Fix import orders
Browse files Browse the repository at this point in the history
  • Loading branch information
mali-git committed Apr 17, 2019
1 parent 49123d5 commit 4cc81fd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/biokeen/content.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

from bio2bel import AbstractManager
from bio2bel.manager.bel_manager import BELManagerMixin
from pybel import from_json_path, to_json_path, from_web
from pybel import from_json_path, from_web, to_json_path
from .constants import EMOJI, biokeen_config
from .convert import to_pykeen_df, to_pykeen_path, to_pykeen_summary_path

Expand Down
4 changes: 2 additions & 2 deletions tests/test_convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
from biokeen.convert.converters import (
AssociationConverter, Converter, CorrelationConverter, DecreasesAmountConverter, DrugIndicationConverter,
DrugSideEffectConverter, EquivalenceConverter, IncreasesAmountConverter, IsAConverter,
MiRNADecreasesExpressionConverter, NamedComplexHasComponentConverter, SubprocessPartOfBiologicalProcess,
PartOfNamedComplexConverter, RegulatesActivityConverter, RegulatesAmountConverter,
MiRNADecreasesExpressionConverter, NamedComplexHasComponentConverter,
PartOfNamedComplexConverter, RegulatesActivityConverter, RegulatesAmountConverter, SubprocessPartOfBiologicalProcess
)
from pybel import BELGraph
from pybel.constants import (
Expand Down

0 comments on commit 4cc81fd

Please sign in to comment.