Fix linting.

This commit is contained in:
Mikael CAPELLE
2024-12-03 14:11:29 +01:00
parent 5c43eb2c73
commit b32d46b641
49 changed files with 1160 additions and 353 deletions

View File

@@ -0,0 +1,8 @@
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: ...