Skip to content

Commit 122f82a

Browse files
authored
Typo
1 parent f1e207f commit 122f82a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

usb_arm/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ def __repr__(self):
4141
def __str__(self):
4242
return self.__repr__()
4343

44+
4445
GripsClose = BitPattern(1, 0, 0)
4546
CloseGrips = GripsClose
4647
GripsOpen = BitPattern(2, 0, 0)
@@ -82,7 +83,7 @@ def safe_tell(self, fn):
8283
def move(self, pattern, time=1):
8384
"""Perform a pattern move with timing and stop"""
8485
try:
85-
delf.tell(pattern)
86+
self.tell(pattern)
8687
sleep(time)
8788
finally:
8889
self.tell(Stop)

0 commit comments

Comments
 (0)