mirror of
https://github.com/ilri/dspace-statistics-api.git
synced 2024-11-16 19:37:04 +01:00
Alan Orth
cc5ce3ab98
Flake8 validates code style against PEP 8 in order to encourage the writing of idiomatic Python. For reference, I am currently ignoring errors about line length (E501) because I feel it makes code harder to read. This is the invocation I am using: $ flake8 --ignore E501 dspace_statistics_api
11 lines
188 B
Python
11 lines
188 B
Python
from .config import SOLR_SERVER
|
|
from SolrClient import SolrClient
|
|
|
|
|
|
def solr_connection():
|
|
connection = SolrClient(SOLR_SERVER)
|
|
|
|
return connection
|
|
|
|
# vim: set sw=4 ts=4 expandtab:
|