mirror of
https://github.com/django-components/django-components.git
synced 2025-09-27 07:59:08 +00:00
Variables are never used in the tests. Remove them.
This commit is contained in:
parent
5fcabaa5ba
commit
fa3731422f
1 changed files with 1 additions and 4 deletions
|
@ -20,10 +20,7 @@ class SimpleComponentWithSharedDependency(component.Component):
|
||||||
template_name = "simple_template.html"
|
template_name = "simple_template.html"
|
||||||
|
|
||||||
def get_context_data(self, variable, variable2="default"):
|
def get_context_data(self, variable, variable2="default"):
|
||||||
return {
|
return {}
|
||||||
"variable": variable,
|
|
||||||
"variable2": variable2,
|
|
||||||
}
|
|
||||||
|
|
||||||
class Media:
|
class Media:
|
||||||
css = ["style.css", "style2.css"]
|
css = ["style.css", "style2.css"]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue