Skip to content

Commit

Permalink
format:
Browse files Browse the repository at this point in the history
  • Loading branch information
muddymudskipper committed Nov 11, 2024
1 parent 6d4beb0 commit 37061fc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/test_splitnt.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ def setup(request: pytest.FixtureRequest) -> None:
make_new_project(PROJECT_ID)

(Path(__path__[0]) / PROJECT_ID / "resources").mkdir(parents=True, exist_ok=True)
copy(Path(__path__[0]) / "test_files" / "test.nt", Path(__path__[0]) / PROJECT_ID / "resources" / "test.nt")
copy(
Path(__path__[0]) / "test_files" / "test.nt",
Path(__path__[0]) / PROJECT_ID / "resources" / "test.nt",
)

with (Path(__path__[0]) / PROJECT_ID / "resources" / "test.nt").open("rb") as f:
buf = BytesIO(f.read())
Expand Down

0 comments on commit 37061fc

Please sign in to comment.