chore: Remove a useless super().__init__() call from PSStreamHandler

This commit is contained in:
Gergely Polonkai 2023-11-02 10:50:42 +01:00
parent 0c17410e18
commit df8c79514a
No known key found for this signature in database
GPG Key ID: 2D2885533B869ED4

View File

@ -50,7 +50,6 @@ class PSStreamHandler:
"""Packet stream handler"""
def __init__(self, req: int):
super().__init__()
self.req = req
self.queue: Queue["PSMessage"] = Queue()