Skip to content

Commit

Permalink
relinting
Browse files Browse the repository at this point in the history
  • Loading branch information
blighj authored Aug 18, 2022
1 parent 54c072f commit ef09f39
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions django_vite/templatetags/django_vite.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,15 +172,13 @@ def _generate_css_files_of_asset(
if "css" in manifest_entry:
for css_path in manifest_entry["css"]:
if css_path not in already_processed:
css_url = (
url = (
DjangoViteAssetLoader._generate_production_server_url(
css_path
)
)
tags.append(
DjangoViteAssetLoader._generate_stylesheet_tag(
css_url
)
DjangoViteAssetLoader._generate_stylesheet_tag(url)
)

already_processed.append(css_path)
Expand Down

0 comments on commit ef09f39

Please sign in to comment.