We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4f8db0 commit 5e6ece3Copy full SHA for 5e6ece3
2 files changed
.github/workflows/stubs.yml
@@ -65,7 +65,7 @@ jobs:
65
args: "--version"
66
67
- name: Lint type stubs
68
- run: ruff check ${{ env.FILES }} --extend-select PYI
+ run: ruff check ${{ env.FILES }} --extend-select I,PYI
69
70
- name: Format type stubs
71
run: ruff format ${{ env.FILES }}
src/pyscipopt/scip.pyi
@@ -1,9 +1,9 @@
1
from dataclasses import dataclass
2
from typing import ClassVar
3
-from typing_extensions import disjoint_base
4
5
import numpy
6
from _typeshed import Incomplete
+from typing_extensions import disjoint_base
7
8
CONST: Term
9
EventNames: dict
0 commit comments