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/os.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'project/os.py') diff --git a/project/os.py b/project/os.py index 53b64e1..eaa63db 100644 --- a/project/os.py +++ b/project/os.py @@ -13,7 +13,7 @@ class OS(Enum): CYGWIN = 'Cygwin' def __str__(self): - return self.value + return str(self.value) @staticmethod def current(): -- cgit v1.2.3