Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Mar 25, 2024
1 parent b01e0f7 commit b15d85d
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions dash_query_builder/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,10 @@
_js_dist.extend(
[
{
"relative_package_path": "async-{}.{}.js".format(
async_resource, mode_suffix
),
"external_url": ("https://unpkg.com/{0}@{2}" "/{1}/async-{3}.js").format(
package_name, __name__, __version__, async_resource
"relative_package_path": f"async-{async_resource}.{mode_suffix}.js",
"external_url": (
f"https://unpkg.com/{package_name}@{__version__}"
f"/{__name__}/async-{async_resource}.js"
),
"namespace": package_name,
"async": True,
Expand All @@ -61,12 +60,11 @@
_js_dist.extend(
[
{
"relative_package_path": "async-{}.{}.js.map".format(
async_resource, mode_suffix
),
"relative_package_path": f"async-{async_resource}.{mode_suffix}.js.map",
"external_url": (
"https://unpkg.com/{0}@{2}" "/{1}/async-{3}.js.map"
).format(package_name, __name__, __version__, async_resource),
f"https://unpkg.com/{package_name}@{__version__}"
f"/{__name__}/async-{async_resource}.js.map"
),
"namespace": package_name,
"dynamic": True,
}
Expand Down

0 comments on commit b15d85d

Please sign in to comment.