Skip to content

Commit

Permalink
chore: removes todo comments
Browse files Browse the repository at this point in the history
Signed-off-by: Jennifer Power <[email protected]>
  • Loading branch information
jpower432 committed Nov 7, 2023
1 parent e93a4e1 commit 7d8f369
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 7 deletions.
2 changes: 0 additions & 2 deletions trestlebot/entrypoints/entrypoint_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@

logger = logging.getLogger(__name__)

# TODO: Consider adding support for a config file or environment variables to set these values


class EntrypointBase:
"""Base class for all entrypoints."""
Expand Down
2 changes: 1 addition & 1 deletion trestlebot/transformers/base_transformer.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

"""Base transformer for rules."""

# TODO: Evaluate if this should be contributed back to trestle
# Evaluate if this should be contributed back to trestle

from abc import abstractmethod
from typing import Any
Expand Down
4 changes: 0 additions & 4 deletions trestlebot/transformers/validations.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,6 @@ def handle(self, data: Any, result: ValidationOutcome) -> None:
self.next_handler.handle(data, result)


# TODO(jpower432): Create a class for Profile validation to ensure unique
# entries exists in the workspace.


def parameter_validation(data: Dict[str, Any], result: ValidationOutcome) -> None:
"""Parameter logic additions validation."""
rule_info: Dict[str, Any] = data.get(const.RULE_INFO_TAG, {})
Expand Down

0 comments on commit 7d8f369

Please sign in to comment.