summaryrefslogtreecommitdiff
path: root/paramiko/agent.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2023-01-16 19:40:31 -0500
committerJeff Forcier <jeff@bitprophet.org>2023-01-16 19:40:31 -0500
commit8d52c334b8b99eb96094edb1b513b26f864eeabd (patch)
tree43cba7b53cfb28277f546b09d1fd99aebc7f9e36 /paramiko/agent.py
parente993a986388b0ec44b109a03edd34937a51aa9a1 (diff)
downloadparamiko-8d52c334b8b99eb96094edb1b513b26f864eeabd.tar.gz
No more (object)ions
Diffstat (limited to 'paramiko/agent.py')
-rw-r--r--paramiko/agent.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/paramiko/agent.py b/paramiko/agent.py
index 31a16e2e..f2d57ea5 100644
--- a/paramiko/agent.py
+++ b/paramiko/agent.py
@@ -54,7 +54,7 @@ ALGORITHM_FLAG_MAP = {
}
-class AgentSSH(object):
+class AgentSSH:
def __init__(self):
self._conn = None
self._keys = ()
@@ -232,7 +232,7 @@ def get_agent_connection():
return
-class AgentClientProxy(object):
+class AgentClientProxy:
"""
Class proxying request as a client:
@@ -325,7 +325,7 @@ class AgentServerProxy(AgentSSH):
return self._file
-class AgentRequestHandler(object):
+class AgentRequestHandler:
"""
Primary/default implementation of SSH agent forwarding functionality.