Skip to content

Commit

Permalink
Merge pull request #17 from pfernique/master
Browse files Browse the repository at this point in the history
Update vector.py
  • Loading branch information
pfernique committed May 4, 2017
2 parents d85fbc6 + 1f010ab commit 6727cd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/py/statiskit/stl/vector.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
setattr(__module__, var, getattr(__stl.statiskit.stl, var))
__all__.append(var)

def decoration(cls):
def decorator(cls):

def wrapper__init__(f):
@wraps(f)
Expand Down Expand Up @@ -73,4 +73,4 @@ def _repr_latex_(self):
cls._repr_latex_ = _repr_latex_

for cls in __stl.std._Vector:
decoration(cls)
decorator(cls)

0 comments on commit 6727cd8

Please sign in to comment.