Kronuz / pyScss

pyScss, a Scss compiler for Python
MIT License
582 stars 141 forks source link

inspect.getargspec is deprecated #377

Open gavinwahl opened 5 years ago

gavinwahl commented 5 years ago

When running on Python >= 3.6, this warning is raised:

scss/namespace.py:172: DeprecationWarning: inspect.getargspec() is deprecated, use inspect.signature() or inspect.getfullargspec()
    argspec = inspect.getargspec(function)