Skip to content

Commit

Permalink
Make black happy
Browse files Browse the repository at this point in the history
  • Loading branch information
bbrondel committed Jul 24, 2024
1 parent 1315ddc commit 15c71cd
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions python/lsst/consdb/pqserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,7 @@ class InstrumentTables:

def __init__(self):
inspector = sqlalchemy.inspect(engine)
self.instrument_list = [
name[4:] for name in inspector.get_schema_names() if name.startswith("cdb_")
]
self.instrument_list = [name[4:] for name in inspector.get_schema_names() if name.startswith("cdb_")]
self.table_names = set()
self.schemas = dict()
self.flexible_metadata_schemas = dict()
Expand Down

0 comments on commit 15c71cd

Please sign in to comment.