Skip to content

Commit

Permalink
Add more type hints, add ignore for dynamic base class inheritance (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
jsfehler authored Jun 24, 2022
1 parent c04a75d commit d7e99c9
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 48 deletions.
2 changes: 1 addition & 1 deletion splinter/cookie_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from splinter.meta import InheritedDocs


class CookieManagerAPI(InheritedDocs("_CookieManagerAPI", (object,), {})):
class CookieManagerAPI(InheritedDocs("_CookieManagerAPI", (object,), {})): # type: ignore
"""An API that specifies how a splinter driver deals with cookies.
You can add cookies using the :meth:`add <CookieManagerAPI.add>` method,
Expand Down
Loading

0 comments on commit d7e99c9

Please sign in to comment.