File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed 
pylint/testutils/functional Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 2020            doc/data/messages/m/missing-final-newline/bad/crlf.py 
2121          )$ 
2222repo : https://github.com/astral-sh/ruff-pre-commit 
23-     rev : " v0.8.4 " 
23+     rev : " v0.8.5 " 
2424    hooks :
2525      - id : ruff 
2626        args : ["--fix"] 
@@ -125,7 +125,7 @@ repos:
125125        files : ^(doc/(.*/)*.*\.rst) 
126126        additional_dependencies : [Sphinx==7.4.3] 
127127  - repo : https://github.com/pre-commit/mirrors-mypy 
128-     rev : v1.14.0  
128+     rev : v1.14.1  
129129    hooks :
130130      - id : mypy 
131131        name : mypy 
Original file line number Diff line number Diff line change @@ -22,7 +22,9 @@ class TestDialect(csv.excel):
2222        delimiter  =  ":" 
2323        lineterminator  =  "\n " 
2424
25-     csv .register_dialect ("test" , TestDialect )
25+     # TestDialect inherit from csv.excel, which inherit from Dialect 
26+     # probably something wrong in 'csv''s typing 
27+     csv .register_dialect ("test" , TestDialect )  # type: ignore[arg-type] 
2628
2729    def  _check_output_text (
2830        self ,
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments