@@ -268,7 +268,7 @@ def __init__(
268268 :param py_type: The Python class to generate a schema for.
269269 :param namespace: The Avro namespace to add to schemas.
270270 :param options: Schema generation options.
271- :param processing: Internal parameter to track types currently being processed (for circular dependencies ).
271+ :param processing: Internal parameter to track types currently being processed (for circular references ).
272272 """
273273 self .py_type = py_type
274274 self .options = options
@@ -800,7 +800,7 @@ def __init__(
800800 :param py_type: The Python class to generate a schema for.
801801 :param namespace: The Avro namespace to add to schemas.
802802 :param options: Schema generation options.
803- :param processing: Internal parameter to track types currently being processed (for circular dependencies ).
803+ :param processing: Internal parameter to track types currently being processed (for circular references ).
804804 """
805805 super ().__init__ (py_type , namespace = namespace , options = options , processing = processing )
806806 py_type = _type_from_annotated (py_type )
@@ -1049,11 +1049,11 @@ def __init__(
10491049 :param py_type: The Python class to generate a schema for.
10501050 :param namespace: The Avro namespace to add to schemas.
10511051 :param options: Schema generation options.
1052- :param processing: Internal parameter to track types currently being processed (for circular dependencies ).
1052+ :param processing: Internal parameter to track types currently being processed (for circular references ).
10531053 """
10541054 super ().__init__ (py_type , namespace = namespace , options = options , processing = processing )
10551055 self .processing = processing or set ()
1056- # Add this type to the processing set to detect circular dependencies
1056+ # Add this type to the processing set to detect circular references
10571057 self .processing .add (py_type )
10581058 self .record_fields : collections .abc .Sequence [RecordField ] = []
10591059
0 commit comments