aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/project/ci/appveyor
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-01-17 14:49:48 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-01-17 14:49:48 +0300
commit4c7e63364f53b940084bc46ca2d29b50dc3aab7f (patch)
tree455f792fb30370d6468f7e1556b6210043e82258 /project/ci/appveyor
parentGIANT CLUSTERFUCK OF A COMMIT (diff)
downloadcmake-common-4c7e63364f53b940084bc46ca2d29b50dc3aab7f.tar.gz
cmake-common-4c7e63364f53b940084bc46ca2d29b50dc3aab7f.zip
fix PyLint warnings
Diffstat (limited to 'project/ci/appveyor')
-rw-r--r--project/ci/appveyor/generator.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/project/ci/appveyor/generator.py b/project/ci/appveyor/generator.py
index dc1fa13..19c11df 100644
--- a/project/ci/appveyor/generator.py
+++ b/project/ci/appveyor/generator.py
@@ -15,7 +15,7 @@ class Image(Enum):
VS_2019 = 'Visual Studio 2019'
def __str__(self):
- return self.value
+ return str(self.value)
@staticmethod
def parse(s):
@@ -36,7 +36,7 @@ class Generator(Enum):
VS_2019 = 'Visual Studio 16 2019'
def __str__(self):
- return self.value
+ return str(self.value)
@staticmethod
def from_image(image):