File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 21
21
from kubernetes_asyncio import client
22
22
23
23
PYDOC_RETURN_LABEL = ":rtype:"
24
- PYDOC_FOLLOW_PARAM = ":param bool follow:"
24
+ PYDOC_FOLLOW_PARAM = ":param follow:"
25
25
26
26
# Removing this suffix from return type name should give us event's object
27
27
# type. e.g., if list_namespaces() returns "NamespaceList" type,
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ async def test_watch_for_follow(self):
81
81
82
82
fake_api = Mock ()
83
83
fake_api .read_namespaced_pod_log = CoroutineMock (return_value = fake_resp )
84
- fake_api .read_namespaced_pod_log .__doc__ = ':param bool follow:\n :rtype: str'
84
+ fake_api .read_namespaced_pod_log .__doc__ = ':param follow: \n :type follow: bool \n :rtype: str'
85
85
86
86
watch = kubernetes_asyncio .watch .Watch ()
87
87
count = 1
You can’t perform that action at this time.
0 commit comments