From a2e82768601a1ba5f4f5620cdb27cf82513a2e7d Mon Sep 17 00:00:00 2001 From: Anselm Hahn Date: Sat, 11 Jan 2025 04:47:32 +0100 Subject: [PATCH] refactor: fix syntax error in state_check function definition --- tanabesugano/test/test_num.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tanabesugano/test/test_num.py b/tanabesugano/test/test_num.py index 8e076fc..6a769f7 100644 --- a/tanabesugano/test/test_num.py +++ b/tanabesugano/test/test_num.py @@ -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()