Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
sethsamuel committed Nov 4, 2024
1 parent cedfb66 commit 3eb751f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions datadog_checks_base/datadog_checks/base/stubs/similar.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@

MAX_SIMILAR_TO_DISPLAY = 15


def tags_list_to_dict(tags):
return {
tag.split(':', 1)[0]: (tag.split(':', 1)[1] if ":" in tag else '') for tag in tags
}
return {tag.split(':', 1)[0]: (tag.split(':', 1)[1] if ":" in tag else '') for tag in tags}


def build_similar_elements_msg(expected, submitted_elements):
"""
Expand Down

0 comments on commit 3eb751f

Please sign in to comment.