Skip to content

Commit

Permalink
refactor: fix syntax error in state_check function definition
Browse files Browse the repository at this point in the history
  • Loading branch information
Anselmoo committed Jan 11, 2025
1 parent b104d04 commit a2e8276
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tanabesugano/test/test_num.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
from __future__ import annotations
import stat

import numpy as np

from tanabesugano import matrices


def state_check(x) -> int:"
def state_check(x) -> int:
for i in np.linspace(0, 1500, 30):
if x == 2:
states = matrices.d2(Dq=i).solver()
Expand Down

0 comments on commit a2e8276

Please sign in to comment.