Skip to content

Commit 1963350

Browse files
committed
Change structure to frequenz.dispatch
Signed-off-by: Mathias L. Baumann <[email protected]>
1 parent 54b6848 commit 1963350

File tree

7 files changed

+7
-3
lines changed

7 files changed

+7
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ namespace_packages = true
159159
# used but getting the original ignored error when removing the type: ignore.
160160
# See for example: https://github.com/python/mypy/issues/2960
161161
#no_incremental = true
162-
packages = ["frequenz.actor.dispatch"]
162+
packages = ["frequenz.dispatch"]
163163
strict = true
164164

165165
[[tool.mypy.overrides]]

src/frequenz/dispatch/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# License: MIT
2+
# Copyright © 2024 Frequenz Energy-as-a-Service GmbH
3+
4+
"""A highlevel interface for the dispatch API."""

src/frequenz/dispatch/py.typed

Whitespace-only changes.

tests/test_frequenz_dispatch.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# License: MIT
22
# Copyright © 2024 Frequenz Energy-as-a-Service GmbH
33

4-
"""Tests for the frequenz.actor.dispatch package."""
4+
"""Tests for the frequenz.dispatch.actor package."""
55
import pytest
66

7-
from frequenz.actor.dispatch import delete_me
7+
from frequenz.dispatch.actor import delete_me
88

99

1010
def test_frequenz_dispatch_succeeds() -> None: # TODO(cookiecutter): Remove

0 commit comments

Comments
 (0)