Skip to content

Instantly share code, notes, and snippets.

@ubnt-intrepid
Last active August 29, 2015 14:25
Show Gist options
  • Save ubnt-intrepid/52adc87c34aca8fdcbe4 to your computer and use it in GitHub Desktop.
Save ubnt-intrepid/52adc87c34aca8fdcbe4 to your computer and use it in GitHub Desktop.

作業メモ

autopep8 をWindows上で自動化する

$ # カレントディレクトリ以下のPythonファイルのうちPEP8に準拠していないものを自動的に修正する
$ pep8 . | cut -d: f1 | sort | uniq | sed 's!\\!/!g' | xargs autopep8 -i
  • Windows版のpep8だとバックスラッシュでファイル名を出力してしまうためスラッシュに置き換える
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment