dspace_statistics_api: Sort imports with isort

This commit is contained in:
Alan Orth 2020-10-06 15:12:13 +03:00
parent 630fa0d5fb
commit 5acd927210
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
2 changed files with 4 additions and 4 deletions

View File

@ -1,8 +1,7 @@
import falcon
from .database import DatabaseManager
from .items import get_views
from .items import get_downloads
from .items import get_downloads, get_views
from .util import validate_items_post_parameters

View File

@ -8,11 +8,12 @@ def get_statistics_shards():
Returns:
str:A list of Solr statistics shards separated by commas.
"""
from .config import SOLR_SERVER
import re
import requests
from .config import SOLR_SERVER
# Initialize an empty list for statistics core years
statistics_core_years = []