Skip to content

Commit 9ce54e2

Browse files
committed
fix paths
1 parent ee30f59 commit 9ce54e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tinybear/_paths.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from pathlib import Path
22

3-
DEFAULT_INPUT_DIR = Path("..") / "input"
3+
DEFAULT_INPUT_DIR = Path("..") / ".." / "input"
44

5-
DEFAULT_OUTPUT_DIR = Path("..") / "output"
5+
DEFAULT_OUTPUT_DIR = Path("..") / ".." / "output"
66
if not DEFAULT_OUTPUT_DIR.exists():
77
DEFAULT_OUTPUT_DIR.mkdir()

0 commit comments

Comments
 (0)