Neoteroi / BlackSheep

Fast ASGI web framework for Python
https://www.neoteroi.dev/blacksheep/
MIT License
1.8k stars 75 forks source link

Update v3.py - Fix bug in _get_array_outer_type #494

Closed mmangione closed 2 months ago

mmangione commented 2 months ago

Fix the error in L311 return List[field_info.annotation.args[0]]

The field_info.annotation returns an array, so args is an invalid operation. This commit fixes that issue by returning the field_info.annotation object directly.