Skip to content

Commit 7bb786e

Browse files
committed
fixup ruff
1 parent 153289f commit 7bb786e

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

petab/v2/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@
4848
pass
4949

5050
from .._utils import _generate_path
51-
from .base import BaseTable
5251
from ..v1 import (
5352
validate_yaml_syntax,
5453
yaml,
@@ -60,6 +59,7 @@
6059
from ..v1.yaml import get_path_prefix
6160
from ..versions import parse_version
6261
from . import C, get_observable_df
62+
from .base import BaseTable
6363
from .sciml.core import (
6464
Hybridization,
6565
HybridizationTable,

petab/v2/lint.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
import pandas as pd
1212
import sympy as sp
1313

14+
from petab.v2.sciml.lint import CheckHybridizationTable
15+
16+
from ..v2.C import *
1417
from .base import (
1518
ValidationError,
1619
ValidationIssue,
@@ -19,9 +22,6 @@
1922
ValidationTask,
2023
ValidationWarning,
2124
)
22-
from petab.v2.sciml.lint import CheckHybridizationTable
23-
24-
from ..v2.C import *
2525
from .core import PriorDistribution, Problem
2626

2727
logger = logging.getLogger(__name__)

0 commit comments

Comments
 (0)