fix(linter): fix new flake8 errors
This commit is contained in:
parent
a64ae4f3f8
commit
d65edf5f30
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue