Skip to content

Conversation

@tammoippen
Copy link
Owner

No description provided.


def int_formatter(val, chars, delta, left):
return '{:{}{}}'.format(int(val), '<' if left else '>', chars)
return "{:{}{}}".format(int(val), "<" if left else ">", chars)

Check warning

Code scanning / CodeQL

Unused argument in a formatting call Warning

Too many arguments for string format. Format
"{:{}{}}"
requires only 2, but 3 are provided.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants