Skip to content

Commit

Permalink
Fix pre-commit GHA errors by hand
Browse files Browse the repository at this point in the history
  • Loading branch information
jhiemstrawisc committed Dec 12, 2023
1 parent ed8e8f6 commit b6f5f58
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion test/AllPairs/test_ap.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

import pytest

from spras.allpairs import AllPairs
import spras.config as config
from spras.allpairs import AllPairs

# Note that we don't directly use the config in the test, but we need the config
# to be initialized under the hood nonetheless. Initializing the config has implications
Expand Down
2 changes: 1 addition & 1 deletion test/DOMINO/test_domino.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

import pytest

from spras.domino import DOMINO, post_domino_id_transform, pre_domino_id_transform
import spras.config as config
from spras.domino import DOMINO, post_domino_id_transform, pre_domino_id_transform

config.init_from_file("config/config.yaml")

Expand Down
1 change: 1 addition & 0 deletions test/LocalNeighborhood/test_ln.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from pathlib import Path

import pytest

import spras.config as config

config.init_from_file("config/config.yaml")
Expand Down
2 changes: 1 addition & 1 deletion test/MEO/test_meo.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

import pytest

from spras.meo import MEO, write_properties
import spras.config as config
from spras.meo import MEO, write_properties

config.init_from_file("config/config.yaml")

Expand Down
2 changes: 1 addition & 1 deletion test/MinCostFlow/test_mcf.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

import pytest

from spras.mincostflow import MinCostFlow
import spras.config as config
from spras.mincostflow import MinCostFlow

config.init_from_file("config/config.yaml")

Expand Down
2 changes: 1 addition & 1 deletion test/OmicsIntegrator1/test_oi1.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

import pytest

from spras.omicsintegrator1 import OmicsIntegrator1, write_conf
import spras.config as config
from spras.omicsintegrator1 import OmicsIntegrator1, write_conf

config.init_from_file("config/config.yaml")

Expand Down
2 changes: 1 addition & 1 deletion test/OmicsIntegrator2/test_oi2.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

import pytest

from spras.omicsintegrator2 import OmicsIntegrator2
import spras.config as config
from spras.omicsintegrator2 import OmicsIntegrator2

config.init_from_file("config/config.yaml")

Expand Down
2 changes: 1 addition & 1 deletion test/PathLinker/test_pathlinker.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

import pytest

from spras.pathlinker import PathLinker
import spras.config as config
from spras.pathlinker import PathLinker

config.init_from_file("config/config.yaml")

Expand Down
2 changes: 1 addition & 1 deletion test/analysis/test_summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

import pandas as pd

from spras.analysis.summary import summarize_networks
import spras.config as config
from spras.analysis.summary import summarize_networks

config.init_from_file("config/config.yaml")

Expand Down

0 comments on commit b6f5f58

Please sign in to comment.