diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-01-17 14:49:48 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-01-17 14:49:48 +0300 |
commit | 4c7e63364f53b940084bc46ca2d29b50dc3aab7f (patch) | |
tree | 455f792fb30370d6468f7e1556b6210043e82258 /project/os.py | |
parent | GIANT CLUSTERFUCK OF A COMMIT (diff) | |
download | cmake-common-4c7e63364f53b940084bc46ca2d29b50dc3aab7f.tar.gz cmake-common-4c7e63364f53b940084bc46ca2d29b50dc3aab7f.zip |
fix PyLint warnings
Diffstat (limited to '')
-rw-r--r-- | project/os.py | 2 |
1 files changed, 1 insertions, 1 deletions
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(): |