@@ -389,7 +389,7 @@ def get_store_spec(self, store: str) -> dict[str, Any]:
389389 if protocol not in supported_protocols :
390390 raise DataJointError (
391391 f'Missing or invalid protocol in config.stores["{ store } "]. '
392- f' Supported protocols: { ", " .join (supported_protocols )} '
392+ f" Supported protocols: { ', ' .join (supported_protocols )} "
393393 )
394394
395395 # Define required and allowed keys by protocol
@@ -479,7 +479,7 @@ def get_object_storage_spec(self) -> dict[str, Any]:
479479 supported_protocols = ("file" , "s3" , "gcs" , "azure" )
480480 if protocol not in supported_protocols :
481481 raise DataJointError (
482- f"Invalid object_storage.protocol: { protocol } . " f' Supported protocols: { ", " .join (supported_protocols )} '
482+ f"Invalid object_storage.protocol: { protocol } . Supported protocols: { ', ' .join (supported_protocols )} "
483483 )
484484
485485 # Build spec dict
@@ -555,8 +555,7 @@ def get_object_store_spec(self, store_name: str | None = None) -> dict[str, Any]
555555 supported_protocols = ("file" , "s3" , "gcs" , "azure" )
556556 if protocol not in supported_protocols :
557557 raise DataJointError (
558- f"Invalid protocol for store '{ store_name } ': { protocol } . "
559- f'Supported protocols: { ", " .join (supported_protocols )} '
558+ f"Invalid protocol for store '{ store_name } ': { protocol } . Supported protocols: { ', ' .join (supported_protocols )} "
560559 )
561560
562561 # Use project_name from default config if not specified in store
0 commit comments