Skip to content

Commit 1516e48

Browse files
authored
Merge pull request #280 from nathanchance/silence-new-ruff-warning
tc_build: kernel: Silence new ruff warning (SIM115)
2 parents f788658 + 694a24c commit 1516e48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tc_build/kernel.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def build(self):
7979
# try: ... finally: ... statement to ensure that this file is
8080
# always cleaned up.
8181
# pylint: disable-next=consider-using-with
82-
kconfig_allconfig = NamedTemporaryFile(dir=self.folders.build)
82+
kconfig_allconfig = NamedTemporaryFile(dir=self.folders.build) # noqa: SIM115
8383

8484
configs_to_disable = ['DRM_WERROR', 'WERROR']
8585
kconfig_allconfig_text = ''.join(f"CONFIG_{val}=n\n"

0 commit comments

Comments
 (0)