Skip to content

Commit

Permalink
fix: typing
Browse files Browse the repository at this point in the history
  • Loading branch information
princ3od authored May 16, 2024
1 parent 848a627 commit 4295a3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shared/common/event_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from google.cloud.pubsub_v1 import PublisherClient


def pubsub_publish(topic: PubSubTopic, data: dict):
def pubsub_publish(topic: PubSubTopic, data):
publisher = PublisherClient()
topic_path = publisher.topic_path(PROJECT_ID, topic.value)
str_data = json.dumps(
Expand Down

0 comments on commit 4295a3e

Please sign in to comment.