mirror of
				https://github.com/ARM-software/devlib.git
				synced 2025-11-04 07:51:21 +00:00 
			
		
		
		
	LocalConnection: remove unused timeout parameter
`timeout` parameter passed to LocalConnection gets assigned to an instance variable, however it is not used for anything.
This commit is contained in:
		@@ -28,9 +28,8 @@ class LocalConnection(object):
 | 
			
		||||
 | 
			
		||||
    name = 'local'
 | 
			
		||||
 | 
			
		||||
    def __init__(self, timeout=10, keep_password=True, unrooted=False, password=None):
 | 
			
		||||
    def __init__(self, keep_password=True, unrooted=False, password=None):
 | 
			
		||||
        self.logger = logging.getLogger('local_connection')
 | 
			
		||||
        self.timeout = timeout
 | 
			
		||||
        self.keep_password = keep_password
 | 
			
		||||
        self.unrooted = unrooted
 | 
			
		||||
        self.password = password
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user