We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a64ae4f commit d65edf5Copy full SHA for d65edf5
CHANGELOG.md
@@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
14
### Fixed
15
16
- Fix compatibility with Python 3.12: remove use of `distutils` (@MightyCreak)
17
+- Fix new errors raised by Flake8 (@MightyCreak)
18
19
## 0.8.2 - 2023-04-16
20
src/diffuse/utils.py
@@ -185,7 +185,7 @@ def popenRead(
185
prefs.convertToNativePath('/bin/bash.exe'),
186
'-l',
187
'-c',
188
- 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])}"
189
]
190
opt_cwd = None
191
0 commit comments