Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.

Commit 643b1ea

Browse files
committed
use Optional[]
1 parent 1ddd783 commit 643b1ea

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

data_diff/databases/mssql.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,9 @@ def is_distinct_from(self, a: str, b: str) -> str:
113113
def limit_select(
114114
self,
115115
select_query: str,
116-
offset: int | None = None,
117-
limit: int | None = None,
118-
has_order_by: bool | None = None,
116+
offset: Optional[int] = None,
117+
limit: Optional[int] = None,
118+
has_order_by: Optional[bool] = None,
119119
) -> str:
120120
if offset:
121121
raise NotImplementedError("No support for OFFSET in query")

0 commit comments

Comments
 (0)