You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I suggest to always return a list[int], if no hits then it's an empty list otherwise it's filled with the results.
Makes the code much cleaner to work with.
Right now, it's an int or list[int] or None
Pymem/pymem/pattern.py
Line 153 in 8cf1323
I suggest to always return a list[int], if no hits then it's an empty list otherwise it's filled with the results.
Makes the code much cleaner to work with.