From: John Mulligan Date: Thu, 10 Aug 2023 14:42:20 +0000 (-0400) Subject: cephadm: black format cephadmlib/context.py X-Git-Tag: v19.0.0~561^2~9 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=d5b32477d79506c277b351b2bb81efe12bb53aed;p=ceph.git cephadm: black format cephadmlib/context.py Signed-off-by: John Mulligan Pair-programmed-with: Adam King Co-authored-by: Adam King --- diff --git a/src/cephadm/cephadmlib/context.py b/src/cephadm/cephadmlib/context.py index d516e1e88db3..3411c199ebb6 100644 --- a/src/cephadm/cephadmlib/context.py +++ b/src/cephadm/cephadmlib/context.py @@ -16,7 +16,6 @@ from .constants import ( class BaseConfig: - def __init__(self) -> None: self.image: str = '' self.docker: bool = False @@ -45,7 +44,6 @@ class BaseConfig: class CephadmContext: - def __init__(self) -> None: self.__dict__['_args'] = None self.__dict__['_conf'] = BaseConfig()