Skip to content

Commit 5e70305

Browse files
author
Tanush Prathi
committed
Fixed lint issues on toolchain
1 parent 409c367 commit 5e70305

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

toolchain/mfc/build.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,6 @@ def get_install_binpath(self, case: Case ) -> str:
7272
# <root>/install/<slug>/bin/<target>
7373
return os.sep.join([self.get_install_dirpath(case), "bin", self.name])
7474

75-
def get_home_dirpath(self) -> str:
76-
return os.sep.join([os.getcwd()])
77-
7875
def is_configured(self, case: Case ) -> bool:
7976
# We assume that if the CMakeCache.txt file exists, then the target is
8077
# configured. (this isn't perfect, but it's good enough for now)

toolchain/mfc/state.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@ class gpuConfigOptions(Enum):
99

1010
@dataclasses.dataclass
1111
class MFCConfig:
12+
# pylint: disable=too-many-instance-attributes
1213
mpi: bool = True
1314
gpu: str = gpuConfigOptions.NONE.value
14-
# mp: bool = False
15-
# acc: bool = False
1615
debug: bool = False
1716
gcov: bool = False
1817
unified: bool = False

0 commit comments

Comments
 (0)