]> git.openstreetmap.org Git - nominatim.git/commitdiff
add missing includes in result fomatting example
authorSarah Hoffmann <lonvia@denofr.de>
Fri, 16 Aug 2024 09:32:38 +0000 (11:32 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Fri, 16 Aug 2024 09:32:38 +0000 (11:32 +0200)
docs/customize/Result-Formatting.md

index 52a49af3b6b4a8df21f616768357cc9573c0a0dd..c9e9245b4a655dfe9873de3ee168de9788864349 100644 (file)
@@ -66,6 +66,8 @@ For example, let us extend the result for the status call in text format
 and add the server URL. Such a formatter would look like this:
 
 ``` python
+from nominatim_api import StatusResult
+
 @dispatch.format_func(StatusResult, 'text')
 def _format_status_text(result, _):
     header = 'Status for server nominatim.openstreetmap.org'
@@ -86,6 +88,8 @@ as adding formatting functions for all result types using the custom
 format name:
 
 ``` python
+from nominatim_api import StatusResult
+
 @dispatch.format_func(StatusResult, 'chatty')
 def _format_status_text(result, _):
     if result.status: