-
Notifications
You must be signed in to change notification settings - Fork 407
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor accessing dict items #321
Milestone
Comments
@Funth0mas |
I havent targeted this issue so I don't expect that it is fully solved. I meant that like a reminder based on former reviews. First I wanted to finish the annotation but I did not managet it yet. And yes I matched some of them using regex |
done. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
refactor
if "ATTRIBUTE" in ignore and ignore["ATTRIBUTE"] == "*"
to
if ignore.get("ATTRIBUTE") == "*"
everywhere
The text was updated successfully, but these errors were encountered: