Skip to content

Commit

Permalink
Ignore mypy error
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianDAlessandro committed Feb 9, 2024
1 parent 5697a89 commit 00738d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datahub/opal.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def append(self, data: dict[str, int | float] | list[int | float]) -> None:
data_index = data["frame"]

dtypes = self._obj.dtypes
self._obj.loc[data_index] = row.loc[data_index] # type: ignore[call-overload]
self._obj.loc[data_index] = row.loc[data_index] # type: ignore[index]
self._obj[:] = self._obj.astype(dtypes)[:]
self._obj[self._obj.columns] = self._obj.astype(dtypes)[self._obj.columns]

Expand Down

0 comments on commit 00738d9

Please sign in to comment.