mirror of
				https://github.com/cuberite/polarssl.git
				synced 2025-11-04 04:32:24 -05:00 
			
		
		
		
	mbedtls_test.py: Tell mypy to ignore mbed_host_tests
Since no typing stubs are available for mbed_host_tests.py, mypy
errors out on mbedtls_test.py with
    error: Skipping analyzing 'mbed_host_tests': found module but no type hints or library stubs
Ignore this import to get at least some benefit from mypy without
spending significant effort to write stubs.
Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
			
			
This commit is contained in:
		
							parent
							
								
									38b66dfc85
								
							
						
					
					
						commit
						e6d0ac26ca
					
				@ -38,7 +38,7 @@ import re
 | 
				
			|||||||
import os
 | 
					import os
 | 
				
			||||||
import binascii
 | 
					import binascii
 | 
				
			||||||
 | 
					
 | 
				
			||||||
from mbed_host_tests import BaseHostTest, event_callback # pylint: disable=import-error
 | 
					from mbed_host_tests import BaseHostTest, event_callback # type: ignore # pylint: disable=import-error
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class TestDataParserError(Exception):
 | 
					class TestDataParserError(Exception):
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user