Skip to content

Commit f7bcbb3

Browse files
committed
Again update PythonLibCore
1 parent 75a12aa commit f7bcbb3

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/SeleniumLibrary/base/robotlibcore.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -232,12 +232,6 @@ def get_typing_hints(self):
232232
# remove return and self statements
233233
if arg not in self:
234234
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-
del hints[arg]
241235
return hints
242236

243237
def _format_positional(self, positional, defaults):

0 commit comments

Comments
 (0)