Skip to content

Commit c986895

Browse files
authored
Merge pull request #29 from makermelissa/main
Fix typo in function name
2 parents 7def510 + fa82f38 commit c986895

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adafruit_shell.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -664,7 +664,7 @@ def get_raspbian_version(self):
664664
return raspbian
665665
return None
666666

667-
def is_minumum_version(self, version):
667+
def is_minimum_version(self, version):
668668
"""Check if the version is at least the specified version"""
669669
# Check that version is a string
670670
if not isinstance(version, str):
@@ -723,7 +723,7 @@ def set_window_manager(self, manager):
723723
"""
724724
Call raspi-config to set a new window manager
725725
"""
726-
if not self.is_minumum_version("bullseye"):
726+
if not self.is_minimum_version("bullseye"):
727727
return
728728

729729
if manager.lower() not in WINDOW_MANAGERS:

0 commit comments

Comments
 (0)