Skip to content

Commit

Permalink
Merge pull request #68 from RetiredWizard/main
Browse files Browse the repository at this point in the history
Replace depreciated .show()
  • Loading branch information
dhalbert committed Nov 4, 2023
2 parents a071d43 + 5752d3e commit b3dd61b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adafruit_pybadger/pybadger_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ def show(self, group) -> None:
"""Show the given group, refreshing the screen immediately"""
self.activity()
self.display.auto_refresh = False
self.display.show(group)
self.display.root_group = group
self.display.refresh()
self.display.auto_refresh = True

Expand Down

0 comments on commit b3dd61b

Please sign in to comment.