-
Notifications
You must be signed in to change notification settings - Fork 10
Fix sonar issues and hotspots parsing #962
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
Conversation
| from enum import Enum | ||
| from functools import cached_property | ||
| from importlib.abc import Traversable | ||
| from importlib.resources.abc import Traversable |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix deprecation warning
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unfortunately it looks like we need to wait until we drop 3.10 support for this one (but we can do that pretty much any time we want).
|
|
||
| class Config: | ||
| frozen = True | ||
| model_config = ConfigDict(frozen=True) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix deprecation warning
7ad013d to
8b9de7b
Compare
|
nahsra
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm



Overview
Fixes a relatively small bug related to parsing empty sonar issues files
Description