mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-02-16 15:47:58 +00:00
pylint: avoid explicit use of format() function
Use psycopg2 SQL formatters for SQL and formatted string literals everywhere else.
This commit is contained in:
@@ -55,10 +55,10 @@ def run_api_script(endpoint, project_dir, extra_env=None, phpcgi_bin=None,
|
||||
query_string = urlencode(params or {})
|
||||
|
||||
env = dict(QUERY_STRING=query_string,
|
||||
SCRIPT_NAME='/{}.php'.format(endpoint),
|
||||
REQUEST_URI='/{}.php?{}'.format(endpoint, query_string),
|
||||
SCRIPT_NAME=f'/{endpoint}.php',
|
||||
REQUEST_URI=f'/{endpoint}.php?{query_string}',
|
||||
CONTEXT_DOCUMENT_ROOT=webdir,
|
||||
SCRIPT_FILENAME='{}/{}.php'.format(webdir, endpoint),
|
||||
SCRIPT_FILENAME=f'{webdir}/{endpoint}.php',
|
||||
HTTP_HOST='localhost',
|
||||
HTTP_USER_AGENT='nominatim-tool',
|
||||
REMOTE_ADDR='0.0.0.0',
|
||||
|
||||
Reference in New Issue
Block a user