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 0868176 commit 41505eeCopy full SHA for 41505ee
pep8speaks/helpers.py
@@ -145,7 +145,7 @@ def run_pycodestyle(ghrequest, config):
145
file_to_check.write(r.text)
146
147
# Use the command line here
148
- cmd = f'pycodestyle {config[pycodestyle_cmd_config]} file_to_check.py'
+ cmd = f'pycodestyle {config["pycodestyle_cmd_config"]} file_to_check.py'
149
proc = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE)
150
stdout, _ = proc.communicate()
151
ghrequest.extra_results[filename] = stdout.decode(r.encoding).splitlines()
0 commit comments