Conform to 3.9 union type formatting

Signed-off-by: Will Beason <willbeason@gmail.com>
This commit is contained in:
Will Beason 2025-06-17 11:41:46 -05:00
parent 390499dd90
commit 586ae85c65
2 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ from pandas import DataFrame
from pandas.testing import assert_frame_equal, assert_series_equal
from io import StringIO
import tracemalloc
from typing import Final
from typing import Final, Union
# Make references to files and wikiq relative to this file, not to the current working directory.
TEST_DIR: Final[str] = os.path.dirname(os.path.realpath(__file__))
@ -42,7 +42,7 @@ class WikiqTester:
def __init__(self,
wiki: str,
case_name: str,
suffix: str | None = None,
suffix: Union[str, None] = None,
in_compression: str = "bz2",
baseline_format: str = "tsv",
out_format: str = "tsv",

2
wikiq
View File

@ -338,7 +338,7 @@ class WikiqParser:
page_count = 0
rev_count = 0
writer: pq.ParquetWriter | pc.CSVWriter
writer: Union[pq.ParquetWriter, pc.CSVWriter]
schema = table.schema()
schema = schema.append(pa.field('revert', pa.bool_(), nullable=True))