From b8b42b14405bb4e447fe899621baa12526b5a502 Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Sat, 4 May 2024 08:50:19 +0000 Subject: [PATCH] Correct code location in user agent string --- matcher/__init__.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/matcher/__init__.py b/matcher/__init__.py index 80c2c41..e389a0a 100644 --- a/matcher/__init__.py +++ b/matcher/__init__.py @@ -1,12 +1,9 @@ """Match OSM and Wikidata items.""" - CallParams = dict[str, str | int] user_agent = ( - "osm-wikidata/0.2" - + " (https://github.com/EdwardBetts/osm-wikidata;" - + " edward@4angle.com)" + "osm-wikidata/0.2 (https://git.4angle.com/edward/owl-map; edward@4angle.com)" )