jsoncomm: remove unnecessary brackets

FdSet does derive directly and only from `object`. Not specifying
any base classes is the same as specifying an empty list of base
classes; therefore get rid of the empty list.
This commit is contained in:
Christian Kellner 2020-07-27 12:05:19 +02:00 committed by Tom Gundersen
parent 630f73ba01
commit ac03c257b9

View file

@ -17,7 +17,7 @@ from typing import Optional
from .types import PathLike
class FdSet():
class FdSet:
"""File-Descriptor Set
This object wraps an array of file-descriptors. Unlike a normal integer