Skip to content

Commit

Permalink
Break jquery URLs to avoid linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
chaoticbear committed Apr 23, 2024
1 parent bf14b72 commit 774610e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/ims/application/_external.py
Original file line number Diff line number Diff line change
Expand Up @@ -698,11 +698,13 @@ class ExternalApplication:
)

jqueryJSSourceURL = URL.fromText(
f"https://cdnjs.cloudflare.com/ajax/libs/jquery/{jqueryVersionNumber}/jquery.min.js"
f"https://cdnjs.cloudflare.com/ajax/libs/jquery/"
f"{jqueryVersionNumber}/jquery.min.js"
)

jqueryMapSourceURL = URL.fromText(
f"https://cdnjs.cloudflare.com/ajax/libs/jquery/{jqueryVersionNumber}/jquery.min.map"
f"https://cdnjs.cloudflare.com/ajax/libs/jquery/"
f"{jqueryVersionNumber}/jquery.min.map"
)

dataTablesSourceURL = URL.fromText(
Expand Down

0 comments on commit 774610e

Please sign in to comment.