Skip to content

Commit

Permalink
Merge pull request #987 from kevinhu/kevinhu-patch-1
Browse files Browse the repository at this point in the history
Fix type annotations in `feed_data_point`
  • Loading branch information
thomasht86 authored Dec 11, 2024
2 parents 9ac5745 + 32b3553 commit 9fe717e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vespa/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -1651,9 +1651,9 @@ async def feed_data_point(
schema: str,
data_id: str,
fields: Dict,
namespace: str = None,
groupname: str = None,
semaphore: asyncio.Semaphore = None,
namespace: Optional[str] = None,
groupname: Optional[str] = None,
semaphore: Optional[asyncio.Semaphore] = None,
**kwargs,
) -> VespaResponse:
path = self.app.get_document_v1_path(
Expand Down

0 comments on commit 9fe717e

Please sign in to comment.