Skip to content

Commit

Permalink
Suppress C901 on append function. Ref #47.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Mar 30, 2024
1 parent 3edb9c4 commit bce67f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cssutils/css/selector.py
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ def _setSelectorText(self, selectorText): # noqa: C901
# used for equality checks and setting of a space combinator
S = ' '

def append(seq, val, typ=None, token=None):
def append(seq, val, typ=None, token=None): # noqa: C901
"""
appends to seq
Expand Down

0 comments on commit bce67f1

Please sign in to comment.