Skip to content

Commit

Permalink
Fix Ruff update
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Dec 9, 2024
1 parent 037e794 commit 27d5e0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion singer_sdk/sinks/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ def _add_sdc_metadata_to_record(
or datetime.datetime.now(tz=datetime.timezone.utc)
).isoformat()
record["_sdc_deleted_at"] = record.get("_sdc_deleted_at")
record["_sdc_sequence"] = int(round(time.time() * 1000))
record["_sdc_sequence"] = round(time.time() * 1000)
record["_sdc_table_version"] = message.get("version")
record["_sdc_sync_started_at"] = self.sync_started_at

Expand Down
2 changes: 1 addition & 1 deletion tests/samples/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def csv_config(outdir: str) -> dict:


@pytest.fixture
def _sqlite_sample_db(sqlite_connector):
def sqlite_sample_db(sqlite_connector: SQLiteConnector):
"""Return a path to a newly constructed sample DB."""
with sqlite_connector._connect() as conn, conn.begin():
for t in range(3):
Expand Down

0 comments on commit 27d5e0e

Please sign in to comment.