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 Jan 21, 2025
1 parent 18bda0a commit 01ba1a9
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 01ba1a9

Please sign in to comment.