Skip to content

Commit 5e18763

Browse files
cleanup Closes #83
1 parent e247204 commit 5e18763

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

app.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@
1111
from src.opengeodeweb_back import app_config
1212

1313

14-
print("Hello World", app_config)
15-
16-
1714
""" Global config """
1815
app = flask.Flask(__name__)
1916

@@ -25,8 +22,6 @@
2522
else:
2623
app.config.from_object(app_config.DevConfig)
2724

28-
29-
print(f"{app.config=}", flush=True)
3025
PORT = int(app.config.get("DEFAULT_PORT"))
3126
ORIGINS = app.config.get("ORIGINS")
3227
SSL = app.config.get("SSL")

src/opengeodeweb_back/routes/blueprint_routes.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,6 @@ def crs_converter_geographic_coordinate_systems():
147147
flask.request.json["input_geode_object"]
148148
)
149149
crs_list = []
150-
print(infos)
151-
print(flask.request.json["input_geode_object"])
152150
for info in infos:
153151
crs = {}
154152
crs["name"] = info.name

0 commit comments

Comments
 (0)