Skip to content

Commit

Permalink
Lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rcboufleur committed Jun 24, 2024
1 parent d0a3a80 commit 7583ab7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion python/lsst/consdb/dao/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ def execute_upsert(self, tbl: Table, df: pandas.DataFrame, commit_every: int = 1
insert_stm = self.dialect.insert(tbl).values(chunk)

# Update Statement using in case of conflict makes an update.
# IMPORTANT: The dialect must be compatible with
# IMPORTANT: The dialect must be compatible with
# on_conflict_do_update.
upsert_stm = insert_stm.on_conflict_do_update(
index_elements=tbl.primary_key.columns,
Expand Down
1 change: 0 additions & 1 deletion python/lsst/consdb/dao/influxdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@ def build_time_range_query(self, topic_name, fields, start, end, index=None, use
f'WHERE {timespan}'
)


def select_time_series(
self,
topic_name,
Expand Down

0 comments on commit 7583ab7

Please sign in to comment.