Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions adafruit_shell.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down Expand Up @@ -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:
Expand Down