Skip to content

Commit 534ce68

Browse files
minor fixes
1 parent 5feadc3 commit 534ce68

File tree

4 files changed

+3
-2
lines changed

4 files changed

+3
-2
lines changed

appveyor.yml

+1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,5 @@ install:
1717
- activate test-environment
1818

1919
test_script:
20+
- python setup.py install
2021
- nosetests -v

epynet/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from .network import Network
22
from .link import Link, Pipe, Pump, Valve
33
from .node import Node, Junction, Reservoir, Tank
4-
from .objectcollection import ObjectCollection
4+
from .objectcollection import ObjectCollection

epynet/network.py

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
import math
33

44
from . import epanet2
5+
56
from .objectcollection import ObjectCollection
67
from .node import *
78
from .link import *

epynet/objectcollection.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import collections
22
import pandas as pd
3-
import pudb
43

54
class ObjectCollection(dict):
65

0 commit comments

Comments
 (0)