File tree Expand file tree Collapse file tree 4 files changed +5
-10
lines changed
Expand file tree Collapse file tree 4 files changed +5
-10
lines changed Original file line number Diff line number Diff line change 44import os
55import re
66import textwrap
7- from collections import OrderedDict
8- from collections import defaultdict
7+ from collections import OrderedDict , defaultdict
98
109from bmipy .bmi import Bmi
1110
Original file line number Diff line number Diff line change 11from __future__ import annotations
22
3- from importlib .metadata import PackageNotFoundError
4- from importlib .metadata import version
3+ from importlib .metadata import PackageNotFoundError , version
54
65try :
76 __version__ = version ("bmipy" )
Original file line number Diff line number Diff line change 66
77from __future__ import annotations
88
9- from abc import ABC
10- from abc import abstractmethod
11- from typing import TYPE_CHECKING
12- from typing import Any
9+ from abc import ABC , abstractmethod
10+ from typing import TYPE_CHECKING , Any
1311
1412if TYPE_CHECKING :
1513 import numpy as np
Original file line number Diff line number Diff line change 22
33import pytest
44
5- from bmipy ._template import dedent_docstring
6- from bmipy ._template import render_function_signature
5+ from bmipy ._template import dedent_docstring , render_function_signature
76
87
98@pytest .mark .parametrize (
You can’t perform that action at this time.
0 commit comments