Skip to content

Commit

Permalink
Update docs with value of fiona.FIELD_TYPES_MAP (#1196)
Browse files Browse the repository at this point in the history
This is the value in fiona 1.9
  • Loading branch information
StefanBrand authored and sgillies committed Feb 9, 2023
1 parent bc32d5e commit c5c0843
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docs/manual.rst
Original file line number Diff line number Diff line change
Expand Up @@ -447,10 +447,14 @@ be found in a dictionary named :py:attr:`fiona.FIELD_TYPES_MAP`.
.. code-block:: pycon
>>> pprint.pprint(fiona.FIELD_TYPES_MAP)
{'date': <class 'fiona.rfc3339.FionaDateType'>,
{'List[str]': typing.List[str],
'bytes': <class 'bytes'>,
'date': <class 'fiona.rfc3339.FionaDateType'>,
'datetime': <class 'fiona.rfc3339.FionaDateTimeType'>,
'float': <class 'float'>,
'int': <class 'int'>,
'int32': <class 'int'>,
'int64': <class 'int'>,
'str': <class 'str'>,
'time': <class 'fiona.rfc3339.FionaTimeType'>}
Expand Down

0 comments on commit c5c0843

Please sign in to comment.