Skip to content

Commit d5fb7e6

Browse files
committed
Comment typo
1 parent 7bcc8dc commit d5fb7e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

django_pandas/io.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def _get_dtypes(fields_to_dtypes, fields):
9090
f2d = _FIELDS_TO_DTYPES.copy()
9191
f2d.update(fields_to_dtypes)
9292
for field in fields:
93-
# Find the lowest subclass mong the keys of f2d
93+
# Find the lowest subclass among the keys of f2d
9494
t, dtype = object, object
9595
for k, v in f2d.items():
9696
if isinstance(field, k) and issubclass(k, t):

0 commit comments

Comments
 (0)