From a2d565085fe8d75c48d2faaa78ae48b4366cc909 Mon Sep 17 00:00:00 2001 From: Jonathan Shi Date: Tue, 17 Sep 2024 13:24:33 -0700 Subject: [PATCH] lint --- modin/core/storage_formats/base/query_compiler.py | 2 +- modin/core/storage_formats/pandas/query_compiler.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modin/core/storage_formats/base/query_compiler.py b/modin/core/storage_formats/base/query_compiler.py index daf50349b00..76d3902a6e3 100644 --- a/modin/core/storage_formats/base/query_compiler.py +++ b/modin/core/storage_formats/base/query_compiler.py @@ -22,7 +22,7 @@ import abc import warnings from functools import cached_property -from typing import TYPE_CHECKING, Hashable, List, Optional +from typing import TYPE_CHECKING, Hashable, List, Literal, Optional import numpy as np import pandas diff --git a/modin/core/storage_formats/pandas/query_compiler.py b/modin/core/storage_formats/pandas/query_compiler.py index eb4ff88d1f1..05cc02044e8 100644 --- a/modin/core/storage_formats/pandas/query_compiler.py +++ b/modin/core/storage_formats/pandas/query_compiler.py @@ -25,7 +25,7 @@ import re import warnings from collections.abc import Iterable -from typing import TYPE_CHECKING, Hashable, List, Optional +from typing import TYPE_CHECKING, Hashable, List, Literal, Optional import numpy as np import pandas