We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75a12aa commit f7bcbb3Copy full SHA for f7bcbb3
src/SeleniumLibrary/base/robotlibcore.py
@@ -232,12 +232,6 @@ def get_typing_hints(self):
232
# remove return and self statements
233
if arg not in self:
234
hints.pop(arg)
235
- if self.varargs and arg in self.varargs:
236
- hints['*%s' % arg] = hints[arg]
237
- del hints[arg]
238
- if self.kwargs and arg in self.kwargs:
239
- hints['**%s' % arg] = hints[arg]
240
241
return hints
242
243
def _format_positional(self, positional, defaults):
0 commit comments