aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-04-13 21:59:36 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-04-13 21:59:36 +0300
commitff3492ae4752d9b53cadc9d89f4fcb7df5c7afe7 (patch)
tree22810f99e09501786d1c786fa88b8f6901503597
parentproject.ci: hide the --hint parameter (diff)
downloadcmake-common-ff3492ae4752d9b53cadc9d89f4fcb7df5c7afe7.tar.gz
cmake-common-ff3492ae4752d9b53cadc9d89f4fcb7df5c7afe7.zip
fix PyLint warnings
-rw-r--r--project/boost/toolchain.py3
-rw-r--r--project/ci/boost.py1
-rw-r--r--project/ci/cmake.py1
-rw-r--r--project/ci/dirs.py12
4 files changed, 10 insertions, 7 deletions
diff --git a/project/boost/toolchain.py b/project/boost/toolchain.py
index 1f6ae5e..8dd11da 100644
--- a/project/boost/toolchain.py
+++ b/project/boost/toolchain.py
@@ -189,7 +189,8 @@ class CustomToolchain(Toolchain):
def get_compiler(self):
pass
- def get_compiler_version(self):
+ @staticmethod
+ def get_compiler_version():
return CustomToolchain.COMPILER_VERSION
@abc.abstractmethod
diff --git a/project/ci/boost.py b/project/ci/boost.py
index e246963..a68e761 100644
--- a/project/ci/boost.py
+++ b/project/ci/boost.py
@@ -4,7 +4,6 @@
# Distributed under the MIT License.
import argparse
-import logging
import sys
from project.boost.build import BuildParameters, build
diff --git a/project/ci/cmake.py b/project/ci/cmake.py
index 1f3dab8..dbe31f6 100644
--- a/project/ci/cmake.py
+++ b/project/ci/cmake.py
@@ -4,7 +4,6 @@
# Distributed under the MIT License.
import argparse
-import logging
import os.path
import sys
diff --git a/project/ci/dirs.py b/project/ci/dirs.py
index 60fbdf8..6c9aa7a 100644
--- a/project/ci/dirs.py
+++ b/project/ci/dirs.py
@@ -44,15 +44,18 @@ class Dirs(abc.ABC):
def this_one(self):
pass
- def get_toolset(self):
+ @staticmethod
+ def get_toolset():
if 'TOOLSET' in os.environ:
return ToolchainType.parse(os.environ['TOOLSET'])
return None
- def get_platform(self):
+ @staticmethod
+ def get_platform():
return Platform.parse(env('PLATFORM'))
- def get_configuration(self):
+ @staticmethod
+ def get_configuration():
return Configuration.parse(env('CONFIGURATION'))
@abc.abstractmethod
@@ -66,7 +69,8 @@ class Dirs(abc.ABC):
def get_prebuilt_boost_dir(self):
pass
- def get_boost_version(self):
+ @staticmethod
+ def get_boost_version():
return Version.from_string(env('BOOST_VERSION'))
def get_boost_dir(self):