Skip to content

Commit a578a56

Browse files
committed
fixed watch.py, openapi generator v6.6.0 used :rtype: in place of :return:
1 parent 2b5e27d commit a578a56

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

kubernetes/base/watch/watch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
from kubernetes import client
2020

21-
PYDOC_RETURN_LABEL = ":return:"
21+
PYDOC_RETURN_LABEL = ":rtype:"
2222
PYDOC_FOLLOW_PARAM = ":param bool follow:"
2323

2424
# Removing this suffix from return type name should give us event's object

kubernetes/base/watch/watch_test.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def test_watch_with_decode(self):
4545

4646
fake_api = Mock()
4747
fake_api.get_namespaces = Mock(return_value=fake_resp)
48-
fake_api.get_namespaces.__doc__ = ':return: V1NamespaceList'
48+
fake_api.get_namespaces.__doc__ = ':rtype: V1NamespaceList'
4949

5050
w = Watch()
5151
count = 1
@@ -92,7 +92,7 @@ def test_watch_with_interspersed_newlines(self):
9292

9393
fake_api = Mock()
9494
fake_api.get_namespaces = Mock(return_value=fake_resp)
95-
fake_api.get_namespaces.__doc__ = ':return: V1NamespaceList'
95+
fake_api.get_namespaces.__doc__ = ':rtype: V1NamespaceList'
9696

9797
w = Watch()
9898
count = 0
@@ -129,7 +129,7 @@ def test_watch_with_multibyte_utf8(self):
129129

130130
fake_api = Mock()
131131
fake_api.get_configmaps = Mock(return_value=fake_resp)
132-
fake_api.get_configmaps.__doc__ = ':return: V1ConfigMapList'
132+
fake_api.get_configmaps.__doc__ = ':rtype: V1ConfigMapList'
133133

134134
w = Watch()
135135
count = 0
@@ -175,7 +175,7 @@ def test_watch_with_invalid_utf8(self):
175175

176176
fake_api = Mock()
177177
fake_api.get_configmaps = Mock(return_value=fake_resp)
178-
fake_api.get_configmaps.__doc__ = ':return: V1ConfigMapList'
178+
fake_api.get_configmaps.__doc__ = ':rtype: V1ConfigMapList'
179179

180180
w = Watch()
181181
count = 0
@@ -204,7 +204,7 @@ def test_watch_for_follow(self):
204204

205205
fake_api = Mock()
206206
fake_api.read_namespaced_pod_log = Mock(return_value=fake_resp)
207-
fake_api.read_namespaced_pod_log.__doc__ = ':param bool follow:\n:return: str'
207+
fake_api.read_namespaced_pod_log.__doc__ = ':param bool follow:\n:rtype: str'
208208

209209
w = Watch()
210210
count = 1
@@ -256,7 +256,7 @@ def get_values(*args, **kwargs):
256256

257257
fake_api = Mock()
258258
fake_api.get_namespaces = Mock(return_value=fake_resp)
259-
fake_api.get_namespaces.__doc__ = ':return: V1NamespaceList'
259+
fake_api.get_namespaces.__doc__ = ':rtype: V1NamespaceList'
260260

261261
w = Watch()
262262
# ensure we keep our requested resource version or the version latest
@@ -303,7 +303,7 @@ def test_watch_stream_twice(self):
303303

304304
fake_api = Mock()
305305
fake_api.get_namespaces = Mock(return_value=fake_resp)
306-
fake_api.get_namespaces.__doc__ = ':return: V1NamespaceList'
306+
fake_api.get_namespaces.__doc__ = ':rtype: V1NamespaceList'
307307

308308
count = 1
309309
for e in w.stream(fake_api.get_namespaces):
@@ -330,7 +330,7 @@ def test_watch_stream_loop(self):
330330

331331
fake_api = Mock()
332332
fake_api.get_namespaces = Mock(return_value=fake_resp)
333-
fake_api.get_namespaces.__doc__ = ':return: V1NamespaceList'
333+
fake_api.get_namespaces.__doc__ = ':rtype: V1NamespaceList'
334334

335335
count = 0
336336

@@ -597,7 +597,7 @@ def test_pod_log_empty_lines(self):
597597
#
598598
# fake_api = Mock()
599599
# fake_api.get_namespaces = Mock(return_value=fake_resp)
600-
# fake_api.get_namespaces.__doc__ = ':return: V1NamespaceList'
600+
# fake_api.get_namespaces.__doc__ = ':rtype: V1NamespaceList'
601601
#
602602
# # test case with deserialize=True
603603
# w = Watch()

0 commit comments

Comments
 (0)