hgext/fsmonitor/pywatchman/__init__.py
changeset 48946 642e31cb55f0
parent 48875 6000f5b25c9b
child 49537 f58f955adad4
--- a/hgext/fsmonitor/pywatchman/__init__.py	Mon Feb 21 13:03:43 2022 -0700
+++ b/hgext/fsmonitor/pywatchman/__init__.py	Mon Feb 21 13:08:28 2022 -0700
@@ -301,7 +301,7 @@
         )
 
 
-class Transport(object):
+class Transport:
     """communication transport to the watchman server"""
 
     buf = None
@@ -346,7 +346,7 @@
             self.buf.append(b)
 
 
-class Codec(object):
+class Codec:
     """communication encoding for the watchman server"""
 
     transport = None
@@ -859,7 +859,7 @@
         self.transport.write(cmd + b"\n")
 
 
-class client(object):
+class client:
     """Handles the communication with the watchman service"""
 
     sockpath = None