mirror of
https://github.com/django-components/django-components.git
synced 2025-08-03 13:58:16 +00:00
Add *args and **kwargs to make typecheckers and linters happy.
This commit is contained in:
parent
af6a0e5917
commit
b2a328d9ab
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ class Component(metaclass=SimplifiedInterfaceMediaDefiningClass):
|
|||
self.instance_template = None
|
||||
self.slots = {}
|
||||
|
||||
def get_context_data(self):
|
||||
def get_context_data(self, *args, **kwargs):
|
||||
return {}
|
||||
|
||||
def get_template_name(self, context=None):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue