mirror of
				https://github.com/ARM-software/devlib.git
				synced 2025-11-04 07:51:21 +00:00 
			
		
		
		
	LocalConnection: Add ignored 'timeout' __init__ param
Target::get_connection requires this.
This commit is contained in:
		@@ -28,7 +28,8 @@ class LocalConnection(object):
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    name = 'local'
 | 
					    name = 'local'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    def __init__(self, keep_password=True, unrooted=False, password=None):
 | 
					    def __init__(self, keep_password=True, unrooted=False, password=None,
 | 
				
			||||||
 | 
					                 timeout=None):
 | 
				
			||||||
        self.logger = logging.getLogger('local_connection')
 | 
					        self.logger = logging.getLogger('local_connection')
 | 
				
			||||||
        self.keep_password = keep_password
 | 
					        self.keep_password = keep_password
 | 
				
			||||||
        self.unrooted = unrooted
 | 
					        self.unrooted = unrooted
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user