Skip to content

Commit

Permalink
Merge pull request #280 from nathanchance/silence-new-ruff-warning
Browse files Browse the repository at this point in the history
tc_build: kernel: Silence new ruff warning (SIM115)
  • Loading branch information
msfjarvis authored Oct 21, 2024
2 parents f788658 + 694a24c commit 1516e48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tc_build/kernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def build(self):
# try: ... finally: ... statement to ensure that this file is
# always cleaned up.
# pylint: disable-next=consider-using-with
kconfig_allconfig = NamedTemporaryFile(dir=self.folders.build)
kconfig_allconfig = NamedTemporaryFile(dir=self.folders.build) # noqa: SIM115

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

0 comments on commit 1516e48

Please sign in to comment.