Skip to content

Commit

Permalink
remove blanks from python scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuuichi Asahi committed Dec 2, 2024
1 parent 428fd0e commit 120ce82
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion examples/09_derivative/derivative.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,3 @@ def compute_derivative(nx: int, ny: int, nz: int) -> np.float64:
nx, ny, nz = 128, 128, 128
seconds = compute_derivative(nx, ny, nz)
print(f"2D derivative with FFT took {seconds} [s]")

1 change: 0 additions & 1 deletion examples/09_derivative/test_derivative.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,3 @@ def test_analytical_solution(n: int) -> None:
def test_derivative(n: int) -> None:
# The following function fails if it is not correct
_ = compute_derivative(n, n, n)

0 comments on commit 120ce82

Please sign in to comment.