advent-of-code/typings/docplex/mp/basic.pyi

9 lines
185 B
Python
Raw Normal View History

2024-12-03 13:11:29 +00:00
from __future__ import annotations
from typing import Literal
from docplex.mp.operand import Operand
class Expr(Operand):
def __pow__(self, power: Literal[0, 1, 2]) -> Expr: ...