From 6ab3857bdaa792a3e9e07cf63787942325d219a0 Mon Sep 17 00:00:00 2001 From: Johannes Kliemann Date: Thu, 3 Sep 2020 18:12:15 +0200 Subject: [PATCH] Disable Aalborg ref #212 --- park_api/security.py | 1 + 1 file changed, 1 insertion(+) diff --git a/park_api/security.py b/park_api/security.py index 2605bf4..1bd2caf 100644 --- a/park_api/security.py +++ b/park_api/security.py @@ -3,4 +3,5 @@ def file_is_allowed(file): t &= "__Init__" not in file.title() t &= "Sample_City" not in file.title() t &= "Frankfurt" not in file.title() # See offenesdresden/ParkAPI#153 + t &= "Aalborg" not in file.title() # See offenesdresden/ParkAPI#212 return t