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 4b0e9a8 commit 63ecba9Copy full SHA for 63ecba9
src/datajoint/builtin_codecs.py
@@ -531,9 +531,7 @@ def encode(
531
raise TypeError(f"<object> expects bytes or path, got {type(value).__name__}")
532
533
# Build storage path using inherited helper
534
- path, token = self._build_path(
535
- schema, table, field, primary_key, ext=ext, store_name=store_name
536
- )
+ path, token = self._build_path(schema, table, field, primary_key, ext=ext, store_name=store_name)
537
538
# Get storage backend using inherited helper
539
backend = self._get_backend(store_name)
@@ -1247,9 +1245,7 @@ def encode(
1247
1245
schema, table, field, primary_key = self._extract_context(key)
1248
1246
1249
# Build schema-addressed storage path
1250
- path, _ = self._build_path(
1251
- schema, table, field, primary_key, ext=".npy", store_name=store_name
1252
+ path, _ = self._build_path(schema, table, field, primary_key, ext=".npy", store_name=store_name)
1253
1254
# Serialize to .npy format
1255
buffer = io.BytesIO()
0 commit comments