File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ def test_mv_same_paths(m):
111111    assert  m .exists ("src/file.txt" )
112112
113113
114- def  test_rm_no_psuedo_dir (m ):
114+ def  test_rm_no_pseudo_dir (m ):
115115    m .touch ("/dir1/dir2/file" )
116116    m .rm ("/dir1" , recursive = True )
117117    assert  not  m .exists ("/dir1/dir2/file" )
Original file line number Diff line number Diff line change @@ -254,7 +254,7 @@ def get_filesystem_class(protocol):
254254def  _import_class (cls , minv = None ):
255255    """Take a string FQP and return the imported class or identifier 
256256
257-     clas  is of the form "package.module.klass" or "package.module:subobject.klass" 
257+     cls  is of the form "package.module.klass" or "package.module:subobject.klass" 
258258    """ 
259259    if  ":"  in  cls :
260260        mod , name  =  cls .rsplit (":" , 1 )
Original file line number Diff line number Diff line change @@ -284,7 +284,7 @@ def read_block(
284284        found_end_delim  =  seek_delimiter (f , delimiter , 2 ** 16 )
285285        end  =  f .tell ()
286286
287-         # Adjust split location to before delimiter iff  seek found the 
287+         # Adjust split location to before delimiter if  seek found the 
288288        # delimiter sequence, not start or end of file. 
289289        if  found_start_delim  and  split_before :
290290            start  -=  len (delimiter )
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments