From: Kefu Chai Date: Fri, 6 Mar 2020 14:01:59 +0000 (+0800) Subject: mgr/cephadm: update type annotation X-Git-Tag: v15.1.1~88^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F33784%2Fhead;p=ceph.git mgr/cephadm: update type annotation the method signature was changed in ea987a0e56db106f7c76d11f86b3e602257f365e Signed-off-by: Kefu Chai --- diff --git a/src/pybind/mgr/cephadm/module.py b/src/pybind/mgr/cephadm/module.py index 011cb4155ed..25e37b89d4d 100644 --- a/src/pybind/mgr/cephadm/module.py +++ b/src/pybind/mgr/cephadm/module.py @@ -1880,7 +1880,7 @@ class CephadmOrchestrator(orchestrator.Orchestrator, MgrModule): return blink(locs) def get_osd_uuid_map(self, only_up=False): - # type: () -> Dict[str,str] + # type: (bool) -> Dict[str,str] osd_map = self.get('osd_map') r = {} for o in osd_map['osds']: