Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
adamltyson committed Dec 15, 2023
1 parent 30801bc commit 1a115c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions tests/tests/test_general/test_exceptions.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import pytest

from brainglobe_utils.general.exceptions import CommandLineInputError


Expand Down
2 changes: 1 addition & 1 deletion tests/tests/test_general/test_pathlib.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
from pathlib import Path

from brainglobe_utils.general.pathlib import append_to_pathlib_stem


def test_append_to_pathlib_stem():
path = Path("path", "to", "file.txt")
appended_path = append_to_pathlib_stem(path, "_appended")
assert appended_path == Path("path", "to", "file_appended.txt")

0 comments on commit 1a115c9

Please sign in to comment.