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:
parent
630f73ba01
commit
ac03c257b9
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue