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
It may fix by change
line 6
from inspect import Signature -> from inspect import signature
and line 49
sig = Signature(was_modified_since) -> sig = signature(was_modified_since)
in /imagefit/views.py file
/imagefit/views.py, line 49, in resize
It may fix by change
line 6
from inspect import Signature -> from inspect import signature
and line 49
sig = Signature(was_modified_since) -> sig = signature(was_modified_since)
in /imagefit/views.py file
https://docs.python.org/3/library/inspect.html#introspecting-callables-with-the-signature-object
The text was updated successfully, but these errors were encountered: