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
The latest readme says "[pyflakes] supports all active versions of Python: 3.8+".
Yet checker.py contains the following counter function:
defcounter(items):
""" Simplest required implementation of collections.Counter. Required as 2.6 does not have Counter in collections. """results= {}
foriteminitems:
results[item] =results.get(item, 0) +1returnresults
Why is this function necessary?
The text was updated successfully, but these errors were encountered:
The latest readme says "[pyflakes] supports all active versions of Python: 3.8+".
Yet
checker.py
contains the followingcounter
function:Why is this function necessary?
The text was updated successfully, but these errors were encountered: