Skip to content

Commit 0b37ac9

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 2482abb commit 0b37ac9

3 files changed

Lines changed: 3 additions & 6 deletions

File tree

src/bmipy/_template.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
import os
55
import re
66
import textwrap
7-
from collections import OrderedDict
8-
from collections import defaultdict
7+
from collections import OrderedDict, defaultdict
98

109
from bmipy.bmi import Bmi
1110

src/bmipy/bmi.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66

77
from __future__ import annotations
88

9-
from abc import ABC
10-
from abc import abstractmethod
9+
from abc import ABC, abstractmethod
1110
from typing import Any
1211

1312
import numpy as np

tests/template_test.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
import 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(

0 commit comments

Comments
 (0)