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 @@ -44,10 +44,10 @@ dev-flake8 = [
"pydoclint == 0.7.6",
"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",
"frequenz-repo-config[lib] == 0.17.0",
"markdown-callouts == 0.4.0",
"markdown-svgbob == 202406.1023",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

"""The GroupingLatestValueCache caches the latest values in a receiver grouped by key."""


import asyncio
from collections.abc import (
Callable,
Expand Down
1 change: 0 additions & 1 deletion src/frequenz/channels/experimental/_with_previous.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

"""Composable predicate to cache and compare with the previous message."""


from collections.abc import Callable
from typing import Final, Generic, TypeGuard

Expand Down
1 change: 0 additions & 1 deletion tests/experimental/test_pipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

"""Tests for the Pipe class."""


import asyncio
import typing
from contextlib import AsyncExitStack, aclosing, closing
Expand Down
1 change: 0 additions & 1 deletion tests/test_anycast.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

"""Tests for the Channel implementation."""


import asyncio

import pytest
Expand Down
1 change: 0 additions & 1 deletion tests/test_broadcast.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

"""Tests for the Broadcast implementation."""


import asyncio
from dataclasses import dataclass
from typing import TypeGuard, assert_never
Expand Down
1 change: 0 additions & 1 deletion tests/test_file_watcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

"""Tests for `channel.FileWatcher`."""


import pathlib
from collections.abc import AsyncGenerator, Iterator, Sequence
from typing import Any
Expand Down
1 change: 0 additions & 1 deletion tests/test_timer.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

"""Tests for the timer."""


import asyncio
import enum
import re
Expand Down
1 change: 0 additions & 1 deletion tests/test_timer_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

"""Integration tests for the timer."""


import asyncio
from datetime import timedelta

Expand Down
Loading