File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 8
8
import pandas .util .testing as pdtest
9
9
10
10
from swmmnetwork .scenario import ScenarioHydro , ScenarioLoading
11
+ from swmmnetwork .scenario import _upper_case_index , _upper_case_column
11
12
from .utils import data_path
12
13
13
14
@@ -22,12 +23,12 @@ def setup(self):
22
23
23
24
self .known_all_nodes = (
24
25
pd .read_csv (data_path ('all_nodes.csv' ), index_col = [0 ])
25
- .pipe (ScenarioHydro . _upper_case_index )
26
+ .pipe (_upper_case_index )
26
27
)
27
28
self .known_all_edges = (
28
29
pd .read_csv (data_path ('all_edges.csv' ), index_col = [0 ])
29
- .pipe (ScenarioHydro . _upper_case_index )
30
- .pipe (ScenarioHydro . _upper_case_column , ['inlet_node' , 'outlet_node' ])
30
+ .pipe (_upper_case_index )
31
+ .pipe (_upper_case_column , ['inlet_node' , 'outlet_node' ])
31
32
)
32
33
33
34
self .sh = ScenarioHydro (self .known_inp_path , self .known_rpt_path ,
You can’t perform that action at this time.
0 commit comments