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 1aaff78 commit e222f52Copy full SHA for e222f52
1 file changed
pygmt/helpers/utils.py
@@ -891,12 +891,10 @@ def sequence_join(
891
if unit == "generic":
892
_values.append(str(int(item)))
893
else:
894
- _values.append(
895
- str(item.astype(f"timedelta64[{unit}]").astype(int))
896
- )
+ _values.append(str(item.astype(f"timedelta64[{unit}]").astype(int)))
897
elif " " in str(item):
898
_values.append(
899
- np.datetime_as_string(np.asarray(item, dtype="datetime64"))
+ np.datetime_as_string(np.asarray(item, dtype="datetime64")) # type: ignore[arg-type]
900
)
901
902
_values.append(str(item))
0 commit comments