Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisclark committed Jan 2, 2024
1 parent 0fbf71e commit 9b33b49
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion explorer/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,9 @@ def truncate_querylogs(days):

@shared_task
def build_schema_cache_async(connection_alias):
from .schema import build_schema_info, connection_schema_cache_key, connection_schema_json_cache_key, transform_to_json_schema
from .schema import (
build_schema_info, connection_schema_cache_key, connection_schema_json_cache_key, transform_to_json_schema
)
ret = build_schema_info(connection_alias)
cache.set(connection_schema_cache_key(connection_alias), ret)
cache.set(connection_schema_json_cache_key(connection_alias),
Expand Down

0 comments on commit 9b33b49

Please sign in to comment.