advent-of-code/typings/docplex/mp/basic.pyi
Mikael CAPELLE b32d46b641 Fix linting.
2024-12-03 14:11:29 +01:00

9 lines
185 B
Python

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: ...