Skip to content

Commit 97a38f6

Browse files
authored
Merge pull request #434 from GaneshPatil7517/fix/bangbang-mixed-indentation
fix: remove mixed tabs/spaces indentation in bangbang.py (#376)
2 parents 12b8557 + 93a8759 commit 97a38f6

2 files changed

Lines changed: 4 additions & 6 deletions

File tree

humanc/bangbang.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,8 @@ def bangbang_controller(ym):
88
amp = 3
99
elif ym[1]<65:
1010
amp = 1
11-
12-
13-
ustar = np.array([amp,30])
11+
12+
ustar = np.array([amp,30])
1413
return ustar
1514

1615

tools/bangbang.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,8 @@ def bangbang_controller(ym):
99
amp = 3
1010
elif ym[1]<65:
1111
amp = 1
12-
13-
14-
ustar = np.array([amp,30])
12+
13+
ustar = np.array([amp,30])
1514
return ustar
1615

1716

0 commit comments

Comments
 (0)