Skip to content

Commit

Permalink
Merge pull request #180 from devdanzin/master
Browse files Browse the repository at this point in the history
Make list-metrics output stable (fix #179)
  • Loading branch information
tonybaloney authored Jul 5, 2023
2 parents 8cef174 + e72c81a commit 844b73b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/wily/operators/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,12 +112,12 @@ def run(self, module: str, options: Dict[str, Any]) -> Dict[Any, Any]:
"""Dictionary of all operators"""
ALL_OPERATORS = {
operator.name: operator
for operator in {
for operator in (
OPERATOR_CYCLOMATIC,
OPERATOR_MAINTAINABILITY,
OPERATOR_RAW,
OPERATOR_HALSTEAD,
}
)
}


Expand Down

0 comments on commit 844b73b

Please sign in to comment.