You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ echo -n 'import x'> foo.py
$ file foo.py
foo.py: ASCII text, with no line terminators
$ autopep8 --recursive --diff .
--- original/./foo.py
+++ fixed/./foo.py
@@ -1 +1 @@
-import x
\ No newline at end of file
+import x
$ autopep8 --recursive --in-place .
$ file foo.py
foo.py: ASCII text, with no line terminators
$ echo -n 'import x' > foo.py
$ file foo.py
foo.py: ASCII text, with no line terminators
$ autopep8 --diff foo.py
--- original/foo.py
+++ fixed/foo.py
@@ -1 +1 @@
-import x
\ No newline at end of file
+import x
$ autopep8 --in-place foo.py
$ file foo.py
foo.py: ASCII text, with no line terminators
ChillarAnand
changed the title
autopep8 inplace recursive is ignoring W292
autopep8 inplace is ignoring W292
Jun 11, 2020
Command Line
Your Environment
Python version: 3.8
autopep8 version: autopep8 1.5.3 (pycodestyle: 2.6.0)
Platform: macOSX
The text was updated successfully, but these errors were encountered: