Skip to content

Commit 3310117

Browse files
committed
handwritten: Fix D100 Missing docstring in public module
1 parent 312b508 commit 3310117

File tree

15 files changed

+30
-0
lines changed

15 files changed

+30
-0
lines changed

src/handwritten/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"""The NI-DAQmx API for Python."""
2+
13
from nidaqmx.errors import (
24
DaqError,
35
DaqReadError,

src/handwritten/__main__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"""'nidaqmx' command line utility."""
2+
13
from __future__ import annotations
24

35
import logging

src/handwritten/errors.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"""NI-DAQmx error classes."""
2+
13
import warnings
24

35
import deprecation

src/handwritten/grpc_session_options.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"""NI-DAQmx gRPC session options."""
2+
13
from __future__ import annotations
24

35
from enum import IntEnum

src/handwritten/system/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"""NI-DAQmx system classes."""
2+
13
from nidaqmx.system.device import Device
24
from nidaqmx.system.physical_channel import PhysicalChannel
35
from nidaqmx.system.system import (

src/handwritten/system/storage/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"""NI-DAQmx storage classes."""
2+
13
from nidaqmx.system.storage.persisted_channel import PersistedChannel
24
from nidaqmx.system.storage.persisted_scale import PersistedScale
35
from nidaqmx.system.storage.persisted_task import PersistedTask

src/handwritten/system/storage/persisted_channel.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"""NI-DAQmx persisted channel classes."""
2+
13
from nidaqmx import utils
24

35
__all__ = ["PersistedChannel"]

src/handwritten/system/storage/persisted_scale.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"""NI-DAQmx persisted scale classes."""
2+
13
from nidaqmx import utils
24
from nidaqmx.scale import _ScaleAlternateConstructor
35

src/handwritten/system/storage/persisted_task.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"""NI-DAQmx persisted task classes."""
2+
13
from nidaqmx import task, utils
24

35
__all__ = ["PersistedTask"]

src/handwritten/task/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"""NI-DAQmx task and related classes."""
2+
13
from nidaqmx.task._export_signals import ExportSignals
24
from nidaqmx.task._in_stream import InStream
35
from nidaqmx.task._out_stream import OutStream

0 commit comments

Comments
 (0)