Skip to content

Commit

Permalink
fix missing-module-docstring
Browse files Browse the repository at this point in the history
Signed-off-by: Laurynas Jagutis <[email protected]>
  • Loading branch information
Laurynas-Jagutis committed Aug 19, 2024
1 parent 1c765b9 commit a785886
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/power_grid_model_io_native/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@
#
# SPDX-License-Identifier: MPL-2.0

"""Module importing PowerGridModelIoCore."""

from power_grid_model_io_native._core.power_grid_model_io_core import PowerGridModelIoCore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@

from power_grid_model.core.power_grid_core import IdxC, CStr, CharPtr

"""PGM IO CORE module."""

# functions with size_t return
_FUNC_SIZE_T_RES = {"meta_class_size", "meta_class_alignment", "meta_attribute_offset"}
_ARGS_TYPE_MAPPING = {bytes: CharPtr, str: CStr, int: IdxC, float: c_double}
Expand Down

0 comments on commit a785886

Please sign in to comment.