Skip to content

Commit

Permalink
fix linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
seebi committed Jan 6, 2025
1 parent d1c90fa commit e93da68
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions cmem_plugin_irdi/workflow/irdi_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import rfc3987
from cmem_plugin_base.dataintegration.context import ExecutionContext
from cmem_plugin_base.dataintegration.description import Plugin, PluginParameter, Icon
from cmem_plugin_base.dataintegration.description import Icon, Plugin, PluginParameter
from cmem_plugin_base.dataintegration.entity import (
Entities,
Entity,
Expand All @@ -23,7 +23,8 @@
# Version Identifier
VI = "001"

DOCUMENTATION = """Create unique [ECLASS](https://eclass.eu/support/technical-specification/structure-and-elements/irdi) IRDIs.
DOCUMENTATION = """Create unique
[ECLASS](https://eclass.eu/support/technical-specification/structure-and-elements/irdi) IRDIs.
IRDIs are unique for each combination of (non-advanced) parameters.
If no input path is configured, values are read from the URIs of the input (Transformation Input).
Expand All @@ -32,7 +33,8 @@
- Created IRDIs are unique per configuration.
- Specify a graph that stores the state of Item Codes.
- Input and output paths are configurable.
- if no input path is configured, values are read from the URIs of the input (transformation input).
- if no input path is configured, values are read from the URIs of the input
(transformation input).
"""

PARAMETERS = [
Expand Down Expand Up @@ -72,7 +74,7 @@
description="Create unique ECLASS IRDIs.",
documentation=DOCUMENTATION,
parameters=PARAMETERS,
icon=Icon(file_name="logo.svg", package=__package__)
icon=Icon(file_name="logo.svg", package=__package__),
)
class IrdiPlugin(WorkflowPlugin):
"""IRDI Plugin"""
Expand Down

0 comments on commit e93da68

Please sign in to comment.