-
Notifications
You must be signed in to change notification settings - Fork 13
improved type support #650
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
base: master
Are you sure you want to change the base?
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #650 +/- ##
==========================================
- Coverage 97.19% 96.74% -0.46%
==========================================
Files 29 29
Lines 1959 2026 +67
==========================================
+ Hits 1904 1960 +56
- Misses 55 66 +11
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
|
||
@classmethod | ||
def from_yaml(cls, _, node): | ||
def from_yaml(cls, _: Any, node: Any) -> "RucioDatasetIdentifier": |
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.
remove Any
class FuncADLQuery_ATLASxAOD(FuncADLQuery): | ||
yaml_tag = "!FuncADL_ATLASxAOD" | ||
default_codegen = "atlasxaod" | ||
default_codegen: Optional[str] = "atlasxaod" |
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.
can this be set to str
?
No description provided.