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
By adding *args, **kwargs after value this problem can be solved, and does not impact other things IMHO.
However, I don't know much of the internals of django_tables2, so please feel free to close this issue if you think this is not helpful or affects other subsystems...
The text was updated successfully, but these errors were encountered:
django-tables2/django_tables2/columns/base.py
Line 356 in 7a5a1fb
This method is called and can be declared with various parameters (dynamically determined by introspection) in subclasses.
IDEs like PyCharm help by finding out which params the inherited method has, to show you an error if the signature doesn't match.
So if you e.g. declare a Column like this:
the IDE places a warning:
![grafik](https://user-images.githubusercontent.com/2955584/235347953-fcd02cf1-40e0-40be-83ba-becf5b532636.png)
By adding
*args, **kwargs
aftervalue
this problem can be solved, and does not impact other things IMHO.However, I don't know much of the internals of django_tables2, so please feel free to close this issue if you think this is not helpful or affects other subsystems...
The text was updated successfully, but these errors were encountered: