update python typing

This commit is contained in:
Laurent Perron
2025-07-28 10:34:20 -07:00
parent 99ede3bbde
commit 87a66e6239
3 changed files with 10 additions and 7 deletions

View File

@@ -13,8 +13,9 @@
"""helpers methods for the cp_model_builder module on numbers."""
from collections.abc import Sequence
import numbers
from typing import Any, Sequence, Union
from typing import Any, Union
import numpy as np
import numpy.typing as npt