From 3eb4ddb99f46b16ddda19f0bb048053d355f490d Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Fri, 7 May 2021 11:03:21 +0300 Subject: fix PyLint warnings --- project/toolset.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/project/toolset.py b/project/toolset.py index f6fc76f..d1a2d29 100644 --- a/project/toolset.py +++ b/project/toolset.py @@ -76,10 +76,12 @@ class Toolset(abc.ABC): def bootstrap_sh_args(): return [] - def cmake_args(self, build_dir, platform): + @staticmethod + def cmake_args(build_dir, platform): return [] - def build_system_args(self): + @staticmethod + def build_system_args(): return [] @staticmethod -- cgit v1.2.3