We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86278cb commit 58c6ea4Copy full SHA for 58c6ea4
1 file changed
pygmt/src/x2sys_cross.py
@@ -5,7 +5,7 @@
5
import contextlib
6
import os
7
from pathlib import Path
8
-from typing import Literal
+from typing import Any, Literal
9
10
import pandas as pd
11
from pygmt.clib import Session
@@ -195,7 +195,7 @@ def x2sys_cross(
195
"""
196
output_type = validate_output_table_type(output_type, outfile=outfile)
197
198
- file_contexts = []
+ file_contexts: list[contextlib.AbstractContextManager[Any]] = []
199
for track in tracks:
200
match data_kind(track):
201
case "file":
0 commit comments