Skip to content

Commit 587b36a

Browse files
chore: fix code style
1 parent a1b368d commit 587b36a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

influxdb_client/client/flux_csv_parser.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,8 @@ def _prepare_data_frame(self):
253253
_temp_df = pd.DataFrame(self._data_frame_values)
254254
# This is for backward compatibles reason
255255
# In newer Pandas versions 'string' type will be 'str', in older versions 'string' will be 'object'
256-
# In newer Pandas versions 'time' will be 'datetime64[us, UTC]', in older versions 'time' will be 'datetime64[ns, UTC]'
256+
# In newer Pandas versions 'time' will be 'datetime64[us, UTC]', in older versions 'time'
257+
# will be 'datetime64[ns, UTC]'
257258
for column in _temp_df.columns:
258259
if _temp_df[column].dtype.name == 'str':
259260
_temp_df[column] = _temp_df[column].astype(object)

0 commit comments

Comments
 (0)