Skip to content

Commit

Permalink
Fix pylint
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Marr <[email protected]>
  • Loading branch information
smarr committed Mar 1, 2024
1 parent b51a585 commit b6ffc7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/som/compiler/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ def _literal_integer(self, negate_value):

bigint = bigint_from_str(self._text)
if negate_value:
bigint._set_sign(-1)
bigint._set_sign(-1) # pylint: disable=protected-access
result = BigInteger(bigint)
except ValueError:
raise ParseError(
Expand Down

0 comments on commit b6ffc7b

Please sign in to comment.