Skip to content

Commit

Permalink
satisfy ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
rozyczko committed Mar 27, 2024
1 parent 3c53ff6 commit 364f895
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 7 deletions.
5 changes: 4 additions & 1 deletion easyCore/Objects/Job/Analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@
# SPDX-License-Identifier: BSD-3-Clause
# © 2021-2023 Contributors to the easyCore project <https://github.com/easyScience/easyCore

from typing import Any
from typing import List

from easyCore.Objects.ObjectClasses import BaseObj
from easyCore.Objects.ObjectClasses import Parameter
from typing import Any, List


class AnalysisBase(BaseObj):
"""
Expand Down
5 changes: 4 additions & 1 deletion easyCore/Objects/Job/Experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@
# SPDX-License-Identifier: BSD-3-Clause
# © 2021-2023 Contributors to the easyCore project <https://github.com/easyScience/easyCore

from typing import Any
from typing import List

from easyCore.Objects.ObjectClasses import BaseObj
from easyCore.Objects.ObjectClasses import Parameter
from typing import Any, List


class ExperimentBase(BaseObj):
"""
Expand Down
9 changes: 5 additions & 4 deletions easyCore/Objects/Job/Job.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@
# SPDX-License-Identifier: BSD-3-Clause
# © 2021-2023 Contributors to the easyCore project <https://github.com/easyScience/easyCore

from easyCore.Objects.ObjectClasses import BaseObj
from easyCore.Objects.ObjectClasses import Parameter
from typing import List
from easyCore.Objects.Job.Theory import TheoryBase
from easyCore.Objects.Job.Experiment import ExperimentBase

from easyCore.Objects.Job.Analysis import AnalysisBase
from easyCore.Objects.Job.Experiment import ExperimentBase
from easyCore.Objects.Job.Theory import TheoryBase
from easyCore.Objects.ObjectClasses import BaseObj
from easyCore.Objects.ObjectClasses import Parameter


class JobBase(BaseObj):
Expand Down
5 changes: 4 additions & 1 deletion easyCore/Objects/Job/Theory.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@
# SPDX-License-Identifier: BSD-3-Clause
# © 2021-2023 Contributors to the easyCore project <https://github.com/easyScience/easyCore

from typing import Any
from typing import List

from easyCore.Objects.ObjectClasses import BaseObj
from easyCore.Objects.ObjectClasses import Parameter
from typing import Any, List


class TheoryBase(BaseObj):
"""
Expand Down

0 comments on commit 364f895

Please sign in to comment.