]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
cephadm: black format data_utils.py
authorJohn Mulligan <jmulligan@redhat.com>
Wed, 16 Aug 2023 20:44:42 +0000 (16:44 -0400)
committerJohn Mulligan <jmulligan@redhat.com>
Wed, 30 Aug 2023 18:02:15 +0000 (14:02 -0400)
Signed-off-by: John Mulligan <jmulligan@redhat.com>
Pair-programmed-with: Adam King <adking@redhat.com>
Co-authored-by: Adam King <adking@redhat.com>
src/cephadm/cephadmlib/data_utils.py

index c5c33f8e142e2b284de388c73ff070c60fb3755c..eee7751e85071cff0f2f19bc851d279ed99786c5 100644 (file)
@@ -6,7 +6,9 @@ from typing import Dict, Any
 from .exceptions import Error
 
 
-def dict_get(d: Dict, key: str, default: Any = None, require: bool = False) -> Any:
+def dict_get(
+    d: Dict, key: str, default: Any = None, require: bool = False
+) -> Any:
     """
     Helper function to get a key from a dictionary.
     :param d: The dictionary to process.