Skip to content

Commit

Permalink
removed todo comments
Browse files Browse the repository at this point in the history
  • Loading branch information
AkashS0510 committed Jul 24, 2024
1 parent c7fab86 commit 7ad1df8
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/tirith/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

from .core import start_policy_evaluation

# TODO: Use at least __name__ for the logger name

logger = logging.getLogger(__name__)


Expand Down
2 changes: 1 addition & 1 deletion src/tirith/core/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from .evaluators import EVALUATORS_DICT


# TODO: Use __name__ for the logger name instead of using the root logger

logger = logging.getLogger(__name__)


Expand Down
1 change: 0 additions & 1 deletion src/tirith/providers/infracost/handler.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import logging

# TODO: Add at least __name__ as the name of the logger
logger = logging.getLogger(__name__)


Expand Down
2 changes: 1 addition & 1 deletion src/tirith/providers/sg_workflow/handler.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import logging

# TODO: Add at least __name__ as the name of the logger

logger = logging.getLogger(__name__)


Expand Down
2 changes: 1 addition & 1 deletion src/tirith/providers/terraform_plan/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def _get_exp_attribute(split_expressions, input_data):
final_data.append(val)
return final_data


def provide(provider_inputs, input_data):
# """Provides the value of the attribute from the input_data"""
outputs = []
Expand Down

0 comments on commit 7ad1df8

Please sign in to comment.