Skip to content

Commit 41505ee

Browse files
committed
Fix error in string formatting
1 parent 0868176 commit 41505ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pep8speaks/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def run_pycodestyle(ghrequest, config):
145145
file_to_check.write(r.text)
146146

147147
# Use the command line here
148-
cmd = f'pycodestyle {config[pycodestyle_cmd_config]} file_to_check.py'
148+
cmd = f'pycodestyle {config["pycodestyle_cmd_config"]} file_to_check.py'
149149
proc = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE)
150150
stdout, _ = proc.communicate()
151151
ghrequest.extra_results[filename] = stdout.decode(r.encoding).splitlines()

0 commit comments

Comments
 (0)