chore: remove staticmethod to appease buggy pylint check

Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
This commit is contained in:
Henry Schreiner
2025-02-28 16:38:15 -05:00
committed by Henry Schreiner
parent 183a7c3f1d
commit 3e37148923
+2 -4
View File
@@ -265,12 +265,10 @@ class EnvironmentFormat(OptionFormat):
values may contain variables or command substitutions.
"""
@staticmethod
def format_table(table: SettingTable) -> str:
def format_table(self, table: SettingTable) -> str:
return " ".join(f'{k}="{v}"' for k, v in table.items())
@staticmethod
def merge_values(before: str, after: str) -> str:
def merge_values(self, before: str, after: str) -> str:
return f"{before} {after}"