Skip to content

Commit d65edf5

Browse files
committed
fix(linter): fix new flake8 errors
1 parent a64ae4f commit d65edf5

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414
### Fixed
1515

1616
- Fix compatibility with Python 3.12: remove use of `distutils` (@MightyCreak)
17+
- Fix new errors raised by Flake8 (@MightyCreak)
1718

1819
## 0.8.2 - 2023-04-16
1920

src/diffuse/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ def popenRead(
185185
prefs.convertToNativePath('/bin/bash.exe'),
186186
'-l',
187187
'-c',
188-
f"cd {_bash_escape(cwd)}; {' '.join([ _bash_escape(arg) for arg in cmd ])}"
188+
f"cd {_bash_escape(cwd)}; {' '.join([_bash_escape(arg) for arg in cmd])}"
189189
]
190190
opt_cwd = None
191191

0 commit comments

Comments
 (0)