Skip to content

Commit

Permalink
one more pylint comment
Browse files Browse the repository at this point in the history
  • Loading branch information
slayoo committed Dec 14, 2024
1 parent 59ac9dc commit 4a090ad
Showing 1 changed file with 6 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,12 @@

assert not os.path.isfile(SIM_RUN_FNAME)

subprocess.run(
[ # pylint: disable=no-member
"bash",
"-c",
f"echo NUMBA_DEFAULT_NUM_THREADS: {numba.config.NUMBA_DEFAULT_NUM_THREADS} >> {SIM_RUN_FNAME}",
],
check=False,
)
cmd = [ # pylint: disable=no-member
"bash",
"-c",
f"echo NUMBA_DEFAULT_NUM_THREADS: {numba.config.NUMBA_DEFAULT_NUM_THREADS} >> {SIM_RUN_FNAME}",
]
subprocess.run(cmd, check=False)
subprocess.run(
[ # pylint: disable=no-member
"bash",
Expand Down

0 comments on commit 4a090ad

Please sign in to comment.