Skip to content

Commit

Permalink
Add equal sign '=' between --config and flake8 config path to fix it
Browse files Browse the repository at this point in the history
  • Loading branch information
gbroques committed Aug 9, 2020
1 parent 7e44158 commit f59cab9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osewb/handle_editor_config_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def get_editor_config() -> dict:
'python.linting.pylintEnabled': False,
'python.linting.flake8Enabled': True,
'python.linting.flake8Args': [
'--config {}'.format(path('.flake8'))
'--config={}'.format(path('.flake8'))
],
# display flake8 warnings as errors
'python.linting.flake8CategorySeverity.W': 'Error',
Expand Down

0 comments on commit f59cab9

Please sign in to comment.