File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 3535test_bucket_name  =  "test" 
3636secure_bucket_name  =  "test-secure" 
3737
38+ 
3839def  as_mutable (store : Store ) ->  Store :
3940    """ 
4041    Return a mutable version of the store 
@@ -48,7 +49,8 @@ def as_mutable(store: Store) -> Store:
4849    if  isinstance (store , ZipStore ):
4950        store .close ()
5051        return  sync (ZipStore .open (path = store .path , read_only = False ))
51-     raise  ValueError (f'Unknown store type: { type (store )}  ' )
52+     raise  ValueError (f"Unknown store type: { type (store )}  " )
53+ 
5254
5355def  as_immutable (store : Store ) ->  Store :
5456    """ 
@@ -63,7 +65,8 @@ def as_immutable(store: Store) -> Store:
6365    if  isinstance (store , ZipStore ):
6466        store .close ()
6567        return  sync (ZipStore .open (path = store .path , read_only = True ))
66-     raise  ValueError (f'Unknown store type: { type (store )}  ' )
68+     raise  ValueError (f"Unknown store type: { type (store )}  " )
69+ 
6770
6871async  def  parse_store (
6972    store : str ,
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments