weitersager.signals   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 16
ccs 3
cts 3
cp 1
rs 10
c 0
b 0
f 0
wmc 0
1
"""
2
weitersager.signals
3
~~~~~~~~~~~~~~~~~~~
4
5
Signals
6
7
:Copyright: 2007-2025 Jochen Kupperschmidt
8
:License: MIT, see LICENSE for details.
9
"""
10
11 1
from blinker import Signal
12
13
14 1
irc_channel_joined = Signal()
15
message_received = Signal()
16