Coverage for C:\src\imod-python\imod\couplers\metamod\metamod.py: 100%
5 statements
« prev ^ index » next coverage.py v7.5.1, created at 2024-05-08 14:15 +0200
« prev ^ index » next coverage.py v7.5.1, created at 2024-05-08 14:15 +0200
1from textwrap import dedent
4class MetaMod:
5 """
6 This class has been moved to ``primod``,
7 `See example here <https://deltares.github.io/iMOD-Documentation/coupler_metamod_example.html>`_.
8 """
10 def __init__(self, *args, **kwargs):
11 message = dedent(
12 """\
13 This class has been moved to the ``primod`` package.
14 For an example, see:
15 https://deltares.github.io/iMOD-Documentation/coupler_metamod_example.html
16 """
17 )
18 raise NotImplementedError(message)