test: apply yapf formatting to test.py files
Yapf complains about spacing inconsistencies around assignment operators in function calls, fix that.
Assisted-by: unsloth/Qwen3.6-35B-A3B-GGUF:IQ4_NL with pi.dev v0.80.2Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
parent
ad9c5b581a
commit
8734b90f72
2 changed files with 31 additions and 31 deletions
|
|
@ -7,7 +7,7 @@ from jw.pkg.lib.ProjectConf import ProjectConf
|
|||
_tmpfiles: list[str] = []
|
||||
|
||||
def _load(text: str) -> ProjectConf:
|
||||
with tempfile.NamedTemporaryFile(mode='w', suffix='.conf', delete=False) as f:
|
||||
with tempfile.NamedTemporaryFile(mode = 'w', suffix = '.conf', delete = False) as f:
|
||||
f.write(text)
|
||||
f.flush()
|
||||
_tmpfiles.append(f.name)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue