Skip to content

Commit

Permalink
Fix linter error regarding number of spaces in inline comment
Browse files Browse the repository at this point in the history
Signed-off-by: lrcouto <laurarccouto@gmail.com>
  • Loading branch information
lrcouto committed Aug 28, 2023
1 parent d1672fd commit 280215b
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# CONF_SOURCE = "conf"

# Class that manages how configuration is loaded.
from kedro.config import OmegaConfigLoader # noqa: E402
from kedro.config import OmegaConfigLoader # noqa: E402

CONFIG_LOADER_CLASS = OmegaConfigLoader
# Keyword arguments to pass to the `CONFIG_LOADER_CLASS` constructor.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
https://kedro.readthedocs.io/en/stable/kedro_project_setup/settings.html."""

# Instantiated project hooks.
from {{cookiecutter.python_package}}.hooks import SparkHooks # noqa: E402
from {{cookiecutter.python_package}}.hooks import SparkHooks # noqa: E402

HOOKS = (SparkHooks(),)

Expand All @@ -22,7 +22,7 @@
# CONF_SOURCE = "conf"

# Class that manages how configuration is loaded.
from kedro.config import OmegaConfigLoader # noqa: E402
from kedro.config import OmegaConfigLoader # noqa: E402

CONFIG_LOADER_CLASS = OmegaConfigLoader
# Keyword arguments to pass to the `CONFIG_LOADER_CLASS` constructor.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# CONF_SOURCE = "conf"

# Class that manages how configuration is loaded.
from kedro.config import OmegaConfigLoader # noqa: E402
from kedro.config import OmegaConfigLoader # noqa: E402

CONFIG_LOADER_CLASS = OmegaConfigLoader
# Keyword arguments to pass to the `CONFIG_LOADER_CLASS` constructor.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
https://kedro.readthedocs.io/en/stable/kedro_project_setup/settings.html."""

# Instantiated project hooks.
from {{cookiecutter.python_package}}.hooks import SparkHooks # noqa: E402
from {{cookiecutter.python_package}}.hooks import SparkHooks # noqa: E402

HOOKS = (SparkHooks(),)

Expand All @@ -22,7 +22,7 @@
# CONF_SOURCE = "conf"

# Class that manages how configuration is loaded.
from kedro.config import OmegaConfigLoader # noqa: E402
from kedro.config import OmegaConfigLoader # noqa: E402

CONFIG_LOADER_CLASS = OmegaConfigLoader
# Keyword arguments to pass to the `CONFIG_LOADER_CLASS` constructor.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
https://kedro.readthedocs.io/en/stable/kedro_project_setup/settings.html."""

# Instantiated project hooks.
from {{cookiecutter.python_package}}.hooks import SparkHooks # noqa: E402
from {{cookiecutter.python_package}}.hooks import SparkHooks # noqa: E402

HOOKS = (SparkHooks(),)

Expand All @@ -22,7 +22,7 @@
# CONF_SOURCE = "conf"

# Class that manages how configuration is loaded.
from kedro.config import OmegaConfigLoader # noqa: # noqa: E402
from kedro.config import OmegaConfigLoader # noqa: # noqa: E402

CONFIG_LOADER_CLASS = OmegaConfigLoader
# Keyword arguments to pass to the `CONFIG_LOADER_CLASS` constructor.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# CONF_SOURCE = "conf"

# Class that manages how configuration is loaded.
from kedro.config import OmegaConfigLoader # noqa: E402
from kedro.config import OmegaConfigLoader # noqa: E402

CONFIG_LOADER_CLASS = OmegaConfigLoader
# Keyword arguments to pass to the `CONFIG_LOADER_CLASS` constructor.
Expand Down

0 comments on commit 280215b

Please sign in to comment.