Don't let pycodestyle warn about line break before binary operators.
dblume

dblume commited on 2024-10-04 22:41:49
Showing 1 changed files, with 1 additions and 1 deletions.

... ...
@@ -65,7 +65,7 @@ except for workspace.xml and tasks.xml](https://intellij-support.jetbrains.com/h
65 65
 If you want your style similar to PEP-9, you can check the style of your code 
66 66
 with ''pycodestyle'':
67 67
 
68
-    pycodestyle --first --show-source --ignore=E501 *.py
68
+    pycodestyle --first --show-source --ignore=E501,W503 *.py
69 69
 
70 70
 ## Requirements
71 71
 
72 72