We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d1ded3 commit aaefa89Copy full SHA for aaefa89
tests/unit/bigquery/test_pyformat.py
@@ -12,7 +12,10 @@
12
# See the License for the specific language governing permissions and
13
# limitations under the License.
14
15
+from __future__ import annotations
16
+
17
from unittest import mock
18
+from typing import List
19
20
from IPython.testing import globalipapp
21
import pytest
@@ -31,7 +34,7 @@
31
34
),
32
35
33
36
)
-def test_parse_fields(sql_template: str, expected: list[str]):
37
+def test_parse_fields(sql_template: str, expected: List[str]):
38
import bigquery_magics.pyformat
39
40
fields = bigquery_magics.pyformat._parse_fields(sql_template)
0 commit comments