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 5161d7f commit b638546Copy full SHA for b638546
docarray/__init__.py
@@ -10,8 +10,3 @@
10
from rich.traceback import install
11
12
install()
13
-
14
-if 'NO_VERSION_CHECK' not in os.environ:
15
- from .helper import is_latest_version
16
17
- is_latest_version()
docarray/document/mixins/helper.py
@@ -21,7 +21,7 @@ def _uri_to_blob(uri: str) -> bytes:
21
with open(uri, 'rb') as fp:
22
return fp.read()
23
else:
24
- raise FileNotFoundError(f'{uri} is not a URL or a valid local path')
+ raise FileNotFoundError(f'`{uri}` is not a URL or a valid local path')
25
26
27
def _get_file_context(file):
0 commit comments