Skip to content

Commit

Permalink
Fix python doc generate (apache#11585)
Browse files Browse the repository at this point in the history
  • Loading branch information
congbobo184 authored Aug 6, 2021
1 parent 898bb10 commit ddb5fb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pulsar-client-cpp/python/pulsar/schema/schema_avro.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def encode(self, obj):
fastavro.schemaless_writer(buffer, self._schema, m)
return buffer.getvalue()

def encode_dict(self, d: dict):
def encode_dict(self, d):
obj = {}
for k, v in d.items():
obj[k] = self._get_serialized_value(v)
Expand Down

0 comments on commit ddb5fb0

Please sign in to comment.