fix(linter): fix new flake8 errors

This commit is contained in:
Romain Failliot 2024-01-06 20:13:07 -05:00
parent a64ae4f3f8
commit d65edf5f30
2 changed files with 2 additions and 1 deletions

View File

@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- Fix compatibility with Python 3.12: remove use of `distutils` (@MightyCreak)
- Fix new errors raised by Flake8 (@MightyCreak)
## 0.8.2 - 2023-04-16

View File

@ -185,7 +185,7 @@ def popenRead(
prefs.convertToNativePath('/bin/bash.exe'),
'-l',
'-c',
f"cd {_bash_escape(cwd)}; {' '.join([ _bash_escape(arg) for arg in cmd ])}"
f"cd {_bash_escape(cwd)}; {' '.join([_bash_escape(arg) for arg in cmd])}"
]
opt_cwd = None