You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
from typing import TYPE_CHECKING
|
|
|
|
if TYPE_CHECKING: # pragma: no cover
|
|
from amqpworker import App # noqa: F401
|
|
|
|
|
|
class SignalHandler:
|
|
def startup(self, app: "App"):
|
|
pass # pragma: no cover
|
|
|
|
def shutdown(self, app: "App"):
|
|
pass # pragma: no cover |