Skip to content

Commit 1b50b83

Browse files
committed
when in doubt type: ignore
1 parent 0fa556c commit 1b50b83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pointers/c_pointer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ def make_py(cls, data: "ctypes._CData"):
208208

209209
return res
210210

211-
def __lshift__(self, data: T):
211+
def __lshift__(self, data: T): # type: ignore
212212
"""Move data from another pointer to this pointer.""" # noqa
213213
self.move(data if isinstance(data, _BaseCPointer) else to_c_ptr(data))
214214
return self

0 commit comments

Comments
 (0)