Skip to content

Commit

Permalink
Merge pull request #29 from pfernique/master
Browse files Browse the repository at this point in the history
Update for Python 3
  • Loading branch information
pfernique committed Sep 13, 2017
2 parents 2a55e8b + 3346c98 commit 3a98973
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/py/statiskit/stl/generator.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import ._stl
import .__stl
from . import _stl
from . import __stl

from functools import wraps

Expand Down
4 changes: 2 additions & 2 deletions src/py/statiskit/stl/set.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import ._stl
import .__stl
from . import _stl
from . import __stl

from functools import wraps
import sys
Expand Down
4 changes: 2 additions & 2 deletions src/py/statiskit/stl/vector.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import ._stl
import .__stl
from . import _stl
from . import __stl

from functools import wraps
import sys
Expand Down

0 comments on commit 3a98973

Please sign in to comment.