We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad5ee96 commit b9498bcCopy full SHA for b9498bc
2 files changed
pyproject.toml
@@ -1,6 +1,6 @@
1
[project]
2
name = "koi-net"
3
-version = "1.3.0"
+version = "1.3.1"
4
description = "Implementation of KOI-net protocol in Python"
5
authors = [
6
{name = "Luke Miller", email = "luke@block.science"}
src/koi_net/components/interfaces/deref_handler.py
@@ -1,4 +1,5 @@
-from dataclasses import dataclass
+from dataclasses import dataclass, field
+from logging import Logger
from typing import TYPE_CHECKING
from rid_lib.core import RID, RIDType
@@ -10,9 +11,10 @@
10
11
12
@dataclass
13
class DerefHandler:
14
+ log: Logger
15
effector: "Effector"
16
- rid_types: tuple[RIDType] = ()
17
+ rid_types: tuple[RIDType] = field(init=False)
18
19
def __post_init__(self):
20
self.effector.register_handler(self)
0 commit comments