Skip to content

Commit

Permalink
v1.0.3: Fixed action __repr__ to return a string (satisfy pylint)
Browse files Browse the repository at this point in the history
  • Loading branch information
cognifloyd authored and stackstorm-neptr committed Dec 27, 2021
1 parent cec304e commit c6681f6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.0.3

- Fixed action __repr__ to return a string (satisfy pylint).

## 1.0.2

- Fixed small linting error and pushing a new version.
Expand Down
2 changes: 1 addition & 1 deletion actions/lib/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def __str__(self):
self._ip_address)

def __repr__(self):
return self.__str__
return self.__str__()

@property
def ip_address(self):
Expand Down
2 changes: 1 addition & 1 deletion pack.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ keywords:
- ncm
- npm
- monitoring
version: 1.0.2
version: 1.0.3
python_versions:
- "3"
author: Encore Technologies
Expand Down

0 comments on commit c6681f6

Please sign in to comment.