Skip to content

Commit

Permalink
Linter limits lines on exception message
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanielRN committed Jul 23, 2021
1 parent 291201e commit 79b9fb6
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,9 @@ def detect(self) -> "Resource":
container_id = _get_container_id()

if not container_id or not cluster_name:
raise RuntimeError("Neither cluster name nor container ID found on EKS process.")
raise RuntimeError(
"Neither cluster name nor container ID found on EKS process."
)

return Resource(
{
Expand Down

0 comments on commit 79b9fb6

Please sign in to comment.