From: John Mulligan Date: Mon, 26 Jun 2023 14:15:57 +0000 (-0400) Subject: python-common: reformat service_spec import line X-Git-Tag: v19.0.0~711^2~9 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=1e0f45f5f600c4142c830d336c7796588b7d19e2;p=ceph-ci.git python-common: reformat service_spec import line Use the "black" style of multi-line import with parens. Signed-off-by: John Mulligan --- diff --git a/src/python-common/ceph/deployment/service_spec.py b/src/python-common/ceph/deployment/service_spec.py index 9ea5c36cb90..a72536ce4fe 100644 --- a/src/python-common/ceph/deployment/service_spec.py +++ b/src/python-common/ceph/deployment/service_spec.py @@ -6,8 +6,21 @@ from collections import OrderedDict from contextlib import contextmanager from functools import wraps from ipaddress import ip_network, ip_address -from typing import Optional, Dict, Any, List, Union, Callable, Iterable, Type, TypeVar, cast, \ - NamedTuple, Mapping, Iterator +from typing import ( + Any, + Callable, + Dict, + Iterable, + Iterator, + List, + Mapping, + NamedTuple, + Optional, + Type, + TypeVar, + Union, + cast, +) import yaml