Skip to content

Commit faa5386

Browse files
committed
handwritten: Fix D107 Missing docstring in __init__
1 parent 7ba5082 commit faa5386

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/handwritten/_lib.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ class DaqFunctionImporter:
9191
"""
9292

9393
def __init__(self, library):
94+
"""Initialize a new DaqFunctionImporter."""
9495
self._library = library
9596
self._lib_lock = threading.Lock()
9697

@@ -133,6 +134,7 @@ class DaqLibImporter:
133134
"""Encapsulates NI-DAQmx library importing and handle type parsing logic."""
134135

135136
def __init__(self):
137+
"""Initialize a new DaqLibImporter."""
136138
self._windll = None
137139
self._cdll = None
138140
self._cal_handle = None

0 commit comments

Comments
 (0)