Skip to content

Commit 3708241

Browse files
style: fix ruff lint errors in test_read_status.py
1 parent 2625e85 commit 3708241

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

tests/test_read_status.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
import os
88
import pytest
9-
import numpy as np
109

1110

1211
# ---------------------------------------------------------------------------
@@ -123,7 +122,7 @@ def setup(self, temp_dir, monkeypatch):
123122
# Create an empty file
124123
in_dir = os.path.join(temp_dir, "in1")
125124
os.makedirs(in_dir, exist_ok=True)
126-
with open(os.path.join(in_dir, "ym"), "w") as f:
125+
with open(os.path.join(in_dir, "ym"), "w") as _f:
127126
pass # empty
128127

129128
monkeypatch.setattr(concore, "inpath", os.path.join(temp_dir, "in"))

0 commit comments

Comments
 (0)