Fix warning in PyCharm by explicitly declaring abc.ABC as superclass
This fixes a warning that `AbstractSubprocessCommand` doesn't implement all abstract methods.
This commit is contained in:
@@ -412,7 +412,7 @@ class RemoveTreeCommand(AbstractCommand):
|
||||
|
||||
|
||||
@attr.s
|
||||
class AbstractSubprocessCommand(AbstractCommand):
|
||||
class AbstractSubprocessCommand(AbstractCommand, abc.ABC):
|
||||
readline_timeout = attr.ib(default=SUBPROC_READLINE_TIMEOUT)
|
||||
proc = attr.ib(validator=attr.validators.instance_of(asyncio.subprocess.Process),
|
||||
init=False)
|
||||
|
||||
Reference in New Issue
Block a user