From c6681f632f815d3529a833a6d8fa93cf1fbb6310 Mon Sep 17 00:00:00 2001 From: Jacob Floyd Date: Mon, 27 Dec 2021 12:15:30 -0600 Subject: [PATCH] v1.0.3: Fixed action __repr__ to return a string (satisfy pylint) --- CHANGES.md | 4 ++++ actions/lib/node.py | 2 +- pack.yaml | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 289e60d..9836dae 100755 --- a/CHANGES.md +++ b/CHANGES.md @@ -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. diff --git a/actions/lib/node.py b/actions/lib/node.py index 2ff4f16..e74c319 100644 --- a/actions/lib/node.py +++ b/actions/lib/node.py @@ -41,7 +41,7 @@ def __str__(self): self._ip_address) def __repr__(self): - return self.__str__ + return self.__str__() @property def ip_address(self): diff --git a/pack.yaml b/pack.yaml index cef5d3c..cb11015 100755 --- a/pack.yaml +++ b/pack.yaml @@ -8,7 +8,7 @@ keywords: - ncm - npm - monitoring -version: 1.0.2 +version: 1.0.3 python_versions: - "3" author: Encore Technologies