]> git.openstreetmap.org Git - nominatim.git/commitdiff
remove unused code
authorSarah Hoffmann <lonvia@denofr.de>
Mon, 23 Oct 2023 09:55:18 +0000 (11:55 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Mon, 23 Oct 2023 09:55:18 +0000 (11:55 +0200)
nominatim/clicmd/admin.py
nominatim/tools/admin.py

index d1ce5ccc0dbf2d080130f9d6c06a5bd23ebd457d..9557dc988c94712f446f8c21c8f167d69639747f 100644 (file)
@@ -29,7 +29,6 @@ class AdminFuncs:
     """
 
     def add_args(self, parser: argparse.ArgumentParser) -> None:
-        self.parser = parser
         group = parser.add_argument_group('Admin tasks')
         objs = group.add_mutually_exclusive_group(required=True)
         objs.add_argument('--warm', action='store_true',
@@ -57,7 +56,6 @@ class AdminFuncs:
                             help='Analyse indexing of the given OSM object')
         mgroup.add_argument('--place-id', type=int,
                             help='Analyse indexing of the given Nominatim object')
-        group = parser.add_argument_group('Arguments for cleaning deleted')
 
 
     def run(self, args: NominatimArgs) -> int:
index 5bc3954b80aaae652d795dfb5e7ad5d4da622f41..c37d0811ff84b0ebb7276c4b90293f8bf71369d6 100644 (file)
@@ -104,4 +104,3 @@ def clean_deleted_relations(config: Configuration, age: str) -> None:
             except DataError as exc:
                 raise UsageError('Invalid PostgreSQL time interval format') from exc
         conn.commit()
-            
\ No newline at end of file