Skip to content

Commit

Permalink
fix:return type
Browse files Browse the repository at this point in the history
  • Loading branch information
vbhagwat committed Jan 9, 2025
1 parent a3e235b commit 00758c2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import asyncio
import logging
from datetime import datetime
from typing import Any, Callable, Coroutine, Dict, List, Literal, Optional, Sequence, Tuple
from typing import Any, Callable, Dict, List, Literal, Optional, Sequence, Tuple

from cassandra.auth import PlainTextAuthProvider
from cassandra.cluster import (
Expand Down Expand Up @@ -326,7 +326,7 @@ async def online_write_batch(
Tuple[EntityKeyProto, Dict[str, ValueProto], datetime, Optional[datetime]]
],
progress: Optional[Callable[[int], Any]],
) -> Coroutine[Any, Any, None]:
) -> None:
"""
Write a batch of features of several entities to the database.
Expand Down

0 comments on commit 00758c2

Please sign in to comment.