Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ dev-flake8 = [
"pydoclint == 0.8.3",
"pydocstyle == 6.3.0",
]
dev-formatting = ["black == 25.9.0", "isort == 8.0.1"]
dev-formatting = ["black == 26.3.1", "isort == 8.0.1"]
dev-mkdocs = [
"Markdown == 3.10.2",
"black == 25.9.0",
"black == 26.3.1",
"mike == 2.1.3",
"mkdocs-gen-files == 0.6.1",
"mkdocs-literate-nav == 0.6.3",
Expand Down
1 change: 0 additions & 1 deletion src/frequenz/quantities/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@
`pip install frequenz-quantities[marshmallow]`).
"""


from ._apparent_power import ApparentPower
from ._current import Current
from ._energy import Energy
Expand Down
1 change: 0 additions & 1 deletion src/frequenz/quantities/_current.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

"""Types for holding quantities with units."""


from __future__ import annotations

from typing import TYPE_CHECKING, Self, overload
Expand Down
1 change: 0 additions & 1 deletion src/frequenz/quantities/_energy.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

"""Types for holding quantities with units."""


from __future__ import annotations

from datetime import timedelta
Expand Down
1 change: 0 additions & 1 deletion src/frequenz/quantities/_frequency.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

"""Types for holding quantities with units."""


from datetime import timedelta
from typing import Self

Expand Down
1 change: 0 additions & 1 deletion src/frequenz/quantities/_percentage.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

"""Types for holding quantities with units."""


from typing import Self

from ._quantity import NoDefaultConstructible, Quantity
Expand Down
1 change: 0 additions & 1 deletion src/frequenz/quantities/_power.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

"""Types for holding quantities with units."""


from __future__ import annotations

from datetime import timedelta
Expand Down
1 change: 0 additions & 1 deletion src/frequenz/quantities/_quantity.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

"""Types for holding quantities with units."""


from __future__ import annotations

import math
Expand Down
1 change: 0 additions & 1 deletion src/frequenz/quantities/_reactive_power.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

"""Types for holding reactive power quantities with units."""


from __future__ import annotations

from typing import TYPE_CHECKING, Self, overload
Expand Down
1 change: 0 additions & 1 deletion src/frequenz/quantities/_temperature.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

"""Types for holding quantities with units."""


from typing import Self

from ._quantity import NoDefaultConstructible, Quantity
Expand Down
1 change: 0 additions & 1 deletion src/frequenz/quantities/_voltage.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

"""Types for holding quantities with units."""


from __future__ import annotations

from typing import TYPE_CHECKING, Self, overload
Expand Down
1 change: 0 additions & 1 deletion tests/experimental/test_marshmallow.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

"""Test marshmallow fields and schema."""


from dataclasses import dataclass, field
from typing import Any, Self, cast

Expand Down
Loading