Skip to content

Commit c194059

Browse files
committed
docs(api): 📝 update docs
1 parent cb5ff19 commit c194059

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

docs/3_usage_api.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Formatting Validation Results
6969
Validation results can be rendered using different output formatters provided by
7070
the library. Two formatter types are available: *text* and *JSON*.
7171
Both rely on the ``rich`` Python library and integrate with the
72-
``rocrate_validator.io.output.console.Console`` class, which extends
72+
``rocrate_validator.utils.io_helpers.output.console.Console`` class, which extends
7373
``rich.console.Console`` to support custom formatter registration.
7474

7575
To format results, create a ``Console`` instance, register one formatter,
@@ -86,8 +86,8 @@ to a file.
8686

8787
.. code-block:: python
8888
89-
from rocrate_validator.io.output.console import Console
90-
from rocrate_validator.io.output.text import TextOutputFormatter
89+
from rocrate_validator.utils.io_helpers.output.console import Console
90+
from rocrate_validator.utils.io_helpers.output.text import TextOutputFormatter
9191
9292
console = Console()
9393
console.register_formatter(TextOutputFormatter())
@@ -114,8 +114,8 @@ programmatic processing, or integration with external tools.
114114

115115
.. code-block:: python
116116
117-
from rocrate_validator.io.output.console import Console
118-
from rocrate_validator.io.output.json import JSONOutputFormatter
117+
from rocrate_validator.utils.io_helpers.output.console import Console
118+
from rocrate_validator.utils.io_helpers.output.json import JSONOutputFormatter
119119
120120
console = Console()
121121
console.register_formatter(JSONOutputFormatter())

0 commit comments

Comments
 (0)