Skip to content

Commit

Permalink
Fix the type hint for debug_port in _BaseWebDriver
Browse files Browse the repository at this point in the history
  • Loading branch information
jrycw committed Nov 18, 2024
1 parent 73a7c86 commit 4c6d965
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion great_tables/_utils_selenium.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

class _BaseWebDriver:

def __init__(self, debug_port: bool):
def __init__(self, debug_port: int | None = None):
self.debug_port = debug_port
self.wd_options = self.cls_wd_options()
self.add_arguments()
Expand Down

0 comments on commit 4c6d965

Please sign in to comment.