Skip to content

Commit

Permalink
Fix simplerepl demo: missing arg for BaseRepl init (#1017)
Browse files Browse the repository at this point in the history
Default value was dropped in 8d16a71
  • Loading branch information
weliveindetail committed Apr 29, 2024
1 parent ca13bf5 commit 0f238b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/sphinx/source/simplerepl.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
class SimpleRepl(BaseRepl):
def __init__(self, config):
self.requested_events = []
BaseRepl.__init__(self, config)
BaseRepl.__init__(self, config, window=None)

def _request_refresh(self):
self.requested_events.append(bpythonevents.RefreshRequestEvent())
Expand Down

0 comments on commit 0f238b7

Please sign in to comment.