anhldbk commented on pull request #847:
URL: https://github.com/apache/avro/pull/847#issuecomment-623767670


   @Fokko actualluy my latest commit fixed the `unrelated changes` due to 
incompatibility in Python formatters. Please check
   
   ```sh
    λ git diff AVRO-2785 upstream/master -- lang/py/avro/io.py
   diff --git a/lang/py/avro/io.py b/lang/py/avro/io.py
   index e165db3a..b910ba56 100644
   --- a/lang/py/avro/io.py
   +++ b/lang/py/avro/io.py
   @@ -846,7 +846,7 @@ class DatumReader(object):
   
        def read_union(self, writers_schema, readers_schema, decoder):
            """
   -        A union is encoded by first writing an int value indicating
   +        A union is encoded by first writing a long value indicating
            the zero-based position within the union of the schema of its value.
            The value is then encoded per the indicated schema within the union.
            """
   @@ -1096,7 +1096,7 @@ class DatumWriter(object):
   
        def write_union(self, writers_schema, datum, encoder):
            """
   -        A union is encoded by first writing an int value indicating
   +        A union is encoded by first writing a long value indicating
            the zero-based position within the union of the schema of its value.
            The value is then encoded per the indicated schema within the union.
            """
   ```


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to