Skip to content

Commit

Permalink
move str cast
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD authored Apr 28, 2024
1 parent 0442778 commit 85cc954
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
version = f.read()

# Instantiate the testing configuration file from the base file `base_test_config.json`
BASE_CONFIG_FILE_PATH = str(Path(__file__) / "base_test_config.json")
TESTING_CONFIG_FILE_PATH = str(Path(__file__) / "tests" / "testing_config.json")
BASE_CONFIG_FILE_PATH = Path(__file__) / "base_test_config.json"
TESTING_CONFIG_FILE_PATH = Path(__file__) / "tests" / "testing_config.json"
if not TESTING_CONFIG_FILE_PATH.exists():
copy(src=BASE_CONFIG_FILE_PATH, dst=TESTING_CONFIG_FILE_PATH)
copy(src=str(BASE_CONFIG_FILE_PATH), dst=str(TESTING_CONFIG_FILE_PATH))

setup(
name="nwbinspector",
Expand Down

0 comments on commit 85cc954

Please sign in to comment.