Skip to content

Commit

Permalink
Docs: Changed docs for class _ComplexityExitMetrics(object). Issue #14
Browse files Browse the repository at this point in the history
  • Loading branch information
iZafiro committed Feb 25, 2020
1 parent 5fab721 commit f30fbbf
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions wemake_python_styleguide/visitors/ast/complexity/function.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,11 @@

@final
class _ComplexityExitMetrics(object):
"""Helper class to store counters of statements that
exit from a function."""
"""
Helper class.
Stores counters of statements that exit from a function.
"""

def __init__(self) -> None:
self.returns: _FunctionCounter = defaultdict(int)
Expand Down

0 comments on commit f30fbbf

Please sign in to comment.