Skip to content

Commit

Permalink
enable search for sqlite conversion by default
Browse files Browse the repository at this point in the history
  • Loading branch information
lonvia committed Dec 7, 2023
1 parent ff06b64 commit 3f5484f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nominatim/clicmd/convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def add_args(self, parser: argparse.ArgumentParser) -> None:
group.add_argument('--reverse', action=WithAction, dest_set=self.options, default=True,
help='Enable/disable support for reverse and lookup API'
' (default: enabled)')
group.add_argument('--search', action=WithAction, dest_set=self.options, default=False,
group.add_argument('--search', action=WithAction, dest_set=self.options, default=True,
help='Enable/disable support for search API (default: disabled)')
group.add_argument('--details', action=WithAction, dest_set=self.options, default=True,
help='Enable/disable support for details API (default: enabled)')
Expand Down

0 comments on commit 3f5484f

Please sign in to comment.