You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by mg...@apache.org on 2022/11/14 11:05:30 UTC

[avro] branch master updated: AVRO-3667: [Python] Python 3.10 CI test fails since a while (#1962)

This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/avro.git


The following commit(s) were added to refs/heads/master by this push:
     new 53cdb411e AVRO-3667: [Python] Python 3.10 CI test fails since a while (#1962)
53cdb411e is described below

commit 53cdb411ef6477f0443b6a653d42354b8f6f3692
Author: Martin Grigorov <ma...@users.noreply.github.com>
AuthorDate: Mon Nov 14 13:05:23 2022 +0200

    AVRO-3667: [Python] Python 3.10 CI test fails since a while (#1962)
    
    Signed-off-by: Martin Tzvetanov Grigorov <mg...@apache.org>
---
 lang/py/avro/compatibility.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lang/py/avro/compatibility.py b/lang/py/avro/compatibility.py
index 0ce084ae6..9aefc0075 100644
--- a/lang/py/avro/compatibility.py
+++ b/lang/py/avro/compatibility.py
@@ -82,7 +82,7 @@ class SchemaCompatibilityResult:
     def __init__(
         self,
         compatibility: SchemaCompatibilityType = SchemaCompatibilityType.recursion_in_progress,
-        incompatibilities: List[SchemaIncompatibilityType] = None,
+        incompatibilities: Optional[List[SchemaIncompatibilityType]] = None,
         messages: Optional[Set[str]] = None,
         locations: Optional[Set[str]] = None,
     ):