We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7def510 + fa82f38 commit c986895Copy full SHA for c986895
adafruit_shell.py
@@ -664,7 +664,7 @@ def get_raspbian_version(self):
664
return raspbian
665
return None
666
667
- def is_minumum_version(self, version):
+ def is_minimum_version(self, version):
668
"""Check if the version is at least the specified version"""
669
# Check that version is a string
670
if not isinstance(version, str):
@@ -723,7 +723,7 @@ def set_window_manager(self, manager):
723
"""
724
Call raspi-config to set a new window manager
725
726
- if not self.is_minumum_version("bullseye"):
+ if not self.is_minimum_version("bullseye"):
727
return
728
729
if manager.lower() not in WINDOW_MANAGERS:
0 commit comments