Skip to content

Commit 596bb69

Browse files
preserve sort order
1 parent bf910de commit 596bb69

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

configuration/configuration.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,9 @@ def _read_secret(secret_name, default = None):
170170
# Setting this to True will display a "maintenance mode" banner at the top of every page.
171171
MAINTENANCE_MODE = environ.get('MAINTENANCE_MODE', 'False').lower() == 'true'
172172

173+
# Maps provider
174+
MAPS_URL = environ.get('MAPS_URL', None)
175+
173176
# An API consumer can request an arbitrary number of objects =by appending the "limit" parameter to the URL (e.g.
174177
# "?limit=1000"). This setting defines the maximum limit. Setting it to 0 or None will allow an API consumer to request
175178
# all objects by specifying "?limit=0".
@@ -251,6 +254,3 @@ def _read_secret(secret_name, default = None):
251254
SHORT_TIME_FORMAT = environ.get('SHORT_TIME_FORMAT', 'H:i:s')
252255
DATETIME_FORMAT = environ.get('DATETIME_FORMAT', 'N j, Y g:i a')
253256
SHORT_DATETIME_FORMAT = environ.get('SHORT_DATETIME_FORMAT', 'Y-m-d H:i')
254-
255-
# Maps provider
256-
MAPS_URL = environ.get('MAPS_URL', None)

0 commit comments

Comments
 (0)