We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb4a058 commit 3ee6d0eCopy full SHA for 3ee6d0e
bench/utils.py
@@ -1,4 +1,3 @@
1
-import os
2
import zipfile
3
from pathlib import Path
4
@@ -9,7 +8,7 @@ def data_path(*args):
9
8
"""
10
Returns a path to dev data
11
12
- return os.path.join(DEV_DATA_PATH, *args)
+ return DEV_DATA_PATH.joinpath(*args)
13
14
15
def words100k():
tests/utils.py
0 commit comments