We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bcc8dc commit d5fb7e6Copy full SHA for d5fb7e6
django_pandas/io.py
@@ -90,7 +90,7 @@ def _get_dtypes(fields_to_dtypes, fields):
90
f2d = _FIELDS_TO_DTYPES.copy()
91
f2d.update(fields_to_dtypes)
92
for field in fields:
93
- # Find the lowest subclass mong the keys of f2d
+ # Find the lowest subclass among the keys of f2d
94
t, dtype = object, object
95
for k, v in f2d.items():
96
if isinstance(field, k) and issubclass(k, t):
0 commit comments