summaryrefslogtreecommitdiff
path: root/paramiko/server.py
diff options
context:
space:
mode:
Diffstat (limited to 'paramiko/server.py')
-rw-r--r--paramiko/server.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/paramiko/server.py b/paramiko/server.py
index 68f5ae92..b68607e1 100644
--- a/paramiko/server.py
+++ b/paramiko/server.py
@@ -31,7 +31,7 @@ from paramiko.common import (
)
-class ServerInterface(object):
+class ServerInterface:
"""
This class defines an interface for controlling the behavior of Paramiko
in server mode.
@@ -593,7 +593,7 @@ class ServerInterface(object):
return (None, None)
-class InteractiveQuery(object):
+class InteractiveQuery:
"""
A query (set of prompts) for a user during interactive authentication.
"""