Skip to content

Commit a6bad4d

Browse files
committed
remove lint found by isort
1 parent d30b8d0 commit a6bad4d

File tree

7 files changed

+7
-1
lines changed

7 files changed

+7
-1
lines changed

src/bmipy/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""The Basic Model Interface (BMI) for Python."""
2+
23
from __future__ import annotations
34

45
from bmipy._version import __version__

src/bmipy/__main__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""The bmipy-render command."""
2+
23
from __future__ import annotations
34

45
from bmipy._cmd import main

src/bmipy/_cmd.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Command line interface that create template BMI implementations."""
2+
23
from __future__ import annotations
34

45
import argparse

src/bmipy/_template.py

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

1010
from bmipy.bmi import Bmi
1111

src/bmipy/bmi.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
This language specification is derived from the Scientific Interface
44
Definition Language (SIDL) file `bmi.sidl <https://github.com/csdms/bmi>`_.
55
"""
6+
67
from __future__ import annotations
78

89
from abc import ABC

tests/cli_test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from __future__ import annotations
22

33
import pytest
4+
45
from bmipy._cmd import main
56

67

tests/template_test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from __future__ import annotations
22

33
import pytest
4+
45
from bmipy._template import dedent_docstring
56
from bmipy._template import render_function_signature
67

0 commit comments

Comments
 (0)