Skip to content

Commit

Permalink
update pepstorm.bat
Browse files Browse the repository at this point in the history
  • Loading branch information
dnjohnstone committed Sep 23, 2019
1 parent 489be38 commit e56463c
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions pepstorm.bat
Original file line number Diff line number Diff line change
@@ -1,14 +1,7 @@
@echo off
set root_dir=%~dp0
pushd %root_dir%
cd pyxem/tests
for /D %%G in ("test_*") do (
cd %%G
for /R %%G in ("*.py") do autopep8 --aggressive --in-place --max-line-length 130 %%G
cd ..
)
cd ../
for %%G in (components generators libraries signals utils) do (
for %%G in (base grid io plot quaternion scalar tests vector) do (
cd %%G
for /R %%G in ("*.py") do autopep8 --aggressive --in-place --max-line-length 130 %%G
cd ..
Expand Down

0 comments on commit e56463c

Please sign in to comment.