aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_web/cors.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/fatcat_web/cors.py')
-rw-r--r--python/fatcat_web/cors.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/fatcat_web/cors.py b/python/fatcat_web/cors.py
index b0f33760..b68c7972 100644
--- a/python/fatcat_web/cors.py
+++ b/python/fatcat_web/cors.py
@@ -23,7 +23,7 @@ def crossdomain(
if headers is not None and not isinstance(headers, str):
headers = ", ".join(x.upper() for x in headers)
if not isinstance(origin, str):
- origin = ", ".join(origin)
+ origin = ", ".join(origin) # type: ignore
if isinstance(max_age, timedelta):
max_age = max_age.total_seconds()
@@ -45,7 +45,7 @@ def crossdomain(
h = resp.headers
- h["Access-Control-Allow-Origin"] = origin
+ h["Access-Control-Allow-Origin"] = origin # type: ignore
h["Access-Control-Allow-Methods"] = get_methods()
h["Access-Control-Max-Age"] = str(max_age)
if headers is not None: