Skip to content

Commit

Permalink
Linter
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcusRostSAP committed Jun 5, 2024
1 parent aa6b2dd commit c7e5551
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions explainer/explainer_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ def levenshtein_distance(seq1, seq2):
)
return matrix[size_x - 1][size_y - 1]


def determine_powerset(elements):
"""Determines the powerset of a list of elements
Args:
Expand All @@ -190,6 +191,7 @@ def determine_powerset(elements):
)
return [set(ps_element) for ps_element in ps_elements]


def get_iterative_subtrace(trace):
"""
Generates all possible non-empty contiguous sublists of a list, maintaining order.
Expand Down

0 comments on commit c7e5551

Please sign in to comment.