File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -29,8 +29,8 @@ classifiers =
2929packages  = find:
3030install_requires  =
3131    mccabe>=0.7.0,<0.8.0
32-     pycodestyle>=2.13 .0,<2.14 .0
33-     pyflakes>=3.3 .0,<3.4 .0
32+     pycodestyle>=2.14 .0,<2.15 .0
33+     pyflakes>=3.4 .0,<3.5 .0
3434python_requires  = >=3.9
3535package_dir  =
3636    =src
Original file line number Diff line number Diff line change 3636    "StringDotFormatMissingArgument" : "F524" ,
3737    "StringDotFormatMixingAutomatic" : "F525" ,
3838    "FStringMissingPlaceholders" : "F541" ,
39+     "TStringMissingPlaceholders" : "F542" ,
3940    "MultiValueRepeatedKeyLiteral" : "F601" ,
4041    "MultiValueRepeatedKeyVariable" : "F602" ,
4142    "TooManyExpressionsInStarredAssignment" : "F621" ,
Original file line number Diff line number Diff line change @@ -41,9 +41,11 @@ def test_oserrors_are_reraised():
4141    err  =  OSError (errno .EAGAIN , "Ominous message" )
4242    with  mock .patch ("_multiprocessing.SemLock" , side_effect = err ):
4343        manager  =  _parallel_checker_manager ()
44-         with  mock .patch .object (manager , "run_serial" ) as  serial :
45-             with  pytest .raises (OSError ):
46-                 manager .run ()
44+         with  (
45+             mock .patch .object (manager , "run_serial" ) as  serial ,
46+             pytest .raises (OSError ),
47+         ):
48+             manager .run ()
4749    assert  serial .call_count  ==  0 
4850
4951
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments