Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
AbelHeinsbroek committed May 1, 2017
1 parent 5feadc3 commit 534ce68
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ install:
- activate test-environment

test_script:
- python setup.py install
- nosetests -v
2 changes: 1 addition & 1 deletion epynet/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .network import Network
from .link import Link, Pipe, Pump, Valve
from .node import Node, Junction, Reservoir, Tank
from .objectcollection import ObjectCollection
from .objectcollection import ObjectCollection
1 change: 1 addition & 0 deletions epynet/network.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import math

from . import epanet2

from .objectcollection import ObjectCollection
from .node import *
from .link import *
Expand Down
1 change: 0 additions & 1 deletion epynet/objectcollection.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import collections
import pandas as pd
import pudb

class ObjectCollection(dict):

Expand Down

0 comments on commit 534ce68

Please sign in to comment.