From 4c7e63364f53b940084bc46ca2d29b50dc3aab7f Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sun, 17 Jan 2021 14:49:48 +0300 Subject: fix PyLint warnings --- project/ci/appveyor/generator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'project/ci/appveyor/generator.py') 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): -- cgit v1.2.3