diff --git a/adafruit_shell.py b/adafruit_shell.py index cd7bc24..5184ce2 100644 --- a/adafruit_shell.py +++ b/adafruit_shell.py @@ -664,7 +664,7 @@ def get_raspbian_version(self): return raspbian return None - def is_minumum_version(self, version): + def is_minimum_version(self, version): """Check if the version is at least the specified version""" # Check that version is a string if not isinstance(version, str): @@ -723,7 +723,7 @@ def set_window_manager(self, manager): """ Call raspi-config to set a new window manager """ - if not self.is_minumum_version("bullseye"): + if not self.is_minimum_version("bullseye"): return if manager.lower() not in WINDOW_MANAGERS: