forked from expo/troggle
isrt reordering of import statements
This commit is contained in:
parent
be9fcc522a
commit
0f8fe0e290
@ -1,6 +1,7 @@
|
|||||||
import sys
|
|
||||||
import os
|
import os
|
||||||
|
import sys
|
||||||
import urllib.parse
|
import urllib.parse
|
||||||
|
|
||||||
"""Settings for a troggle installation which may vary among different
|
"""Settings for a troggle installation which may vary among different
|
||||||
installations: for development or deployment, in a docker image or
|
installations: for development or deployment, in a docker image or
|
||||||
python virtual environment (venv), on ubuntu, debian or in Windows
|
python virtual environment (venv), on ubuntu, debian or in Windows
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
import sys
|
|
||||||
import os
|
import os
|
||||||
|
import sys
|
||||||
import urllib.parse
|
import urllib.parse
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
"""Settings for a troggle installation which may vary among different
|
"""Settings for a troggle installation which may vary among different
|
||||||
installations: for development or deployment, in a docker image or
|
installations: for development or deployment, in a docker image or
|
||||||
python virtual environment (venv), on ubuntu, debian or in Windows
|
python virtual environment (venv), on ubuntu, debian or in Windows
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import sys
|
import sys
|
||||||
|
|
||||||
# This is the local settings for use with the docker compose dev setup. It is imported automatically
|
# This is the local settings for use with the docker compose dev setup. It is imported automatically
|
||||||
|
|
||||||
DATABASES = {
|
DATABASES = {
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import sys
|
import sys
|
||||||
|
|
||||||
# link localsettings to this file for use on expo computer in austria
|
# link localsettings to this file for use on expo computer in austria
|
||||||
|
|
||||||
# This will ALL NEED TO BE CHANGED to match localsettingsWSL / python3 / Django v2.2
|
# This will ALL NEED TO BE CHANGED to match localsettingsWSL / python3 / Django v2.2
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
import sys
|
|
||||||
import os
|
import os
|
||||||
|
import sys
|
||||||
import urllib.parse
|
import urllib.parse
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
"""Settings for a troggle installation which may vary among different
|
"""Settings for a troggle installation which may vary among different
|
||||||
installations: for development or deployment, in a docker image or
|
installations: for development or deployment, in a docker image or
|
||||||
python virtual environment (venv), on ubuntu, debian or in Windows
|
python virtual environment (venv), on ubuntu, debian or in Windows
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
import sys
|
|
||||||
import os
|
import os
|
||||||
|
import sys
|
||||||
import urllib.parse
|
import urllib.parse
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
"""Settings for a troggle installation which may vary among different
|
"""Settings for a troggle installation which may vary among different
|
||||||
installations: for development or deployment, in a docker image or
|
installations: for development or deployment, in a docker image or
|
||||||
python virtual environment (venv), on ubuntu, debian or in Windows
|
python virtual environment (venv), on ubuntu, debian or in Windows
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
import troggle.core.models as models
|
import csv
|
||||||
|
import os
|
||||||
|
import re
|
||||||
|
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
|
|
||||||
import csv
|
import troggle.core.models as models
|
||||||
import re
|
|
||||||
import os
|
|
||||||
|
|
||||||
'''Unused and untested in 2022. Not part fo the re-engineering to make troggle work with QMs.
|
'''Unused and untested in 2022. Not part fo the re-engineering to make troggle work with QMs.
|
||||||
'''
|
'''
|
||||||
|
Loading…
Reference in New Issue
Block a user