We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a669e3c commit 7afcf3aCopy full SHA for 7afcf3a
src/frequenz/core/__init__.py
@@ -1,25 +1,4 @@
1
# License: MIT
2
# Copyright © 2024 Frequenz Energy-as-a-Service GmbH
3
4
-"""Core utilities to complement Python's standard library.
5
-
6
-TODO(cookiecutter): Add a more descriptive module description.
7
-"""
8
9
10
-# TODO(cookiecutter): Remove this function
11
-def delete_me(*, blow_up: bool = False) -> bool:
12
- """Do stuff for demonstration purposes.
13
14
- Args:
15
- blow_up: If True, raise an exception.
16
17
- Returns:
18
- True if no exception was raised.
19
20
- Raises:
21
- RuntimeError: if blow_up is True.
22
- """
23
- if blow_up:
24
- raise RuntimeError("This function should be removed!")
25
- return True
+"""Core utilities to complement Python's standard library."""
tests/test_core.py
0 commit comments