Skip to content

Commit

Permalink
fixed typo in autofomat script
Browse files Browse the repository at this point in the history
  • Loading branch information
introkun committed Nov 16, 2020
1 parent a2c9bfc commit 6379376
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoformat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
find . -iname '*.py' -exec autopep8 --global-config .pep8 --aggressive --aggressive -i "{}" \;
find . -iname '*.py' -exec autopep8 --global-config .pep8 --aggressive -i "{}" \;
find . -iname '*.py' -exec autoflake --in-place --remove-all-unused-imports --remove-unused-variables "{}" \;
find . -iname '*.py' -exec sed -i 's/ /\t/g' "{}" \;

0 comments on commit 6379376

Please sign in to comment.