-
Notifications
You must be signed in to change notification settings - Fork 3
DM-35683: Remove references to columns (colKey and columnKey) #12
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
| self.scalarActions.median = MedianAction(colKey=self.columnKey) | ||
| self.scalarActions.sigmaMad = SigmaMadAction(colKey=self.columnKey) | ||
| self.scalarActions.count = CountAction(colKey=self.columnKey) | ||
| self.scalarActions.median = MedianAction(veectorKey=self.vectorKey) |
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.
Notice typo veectorKey. A few instances in this file.
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.
🤦♂️
|
|
||
| class MedianAction(ScalarAction): | ||
| colKey = Field[str]("Key of Vector to median") | ||
| veectorKey = Field[str]("Key of Vector to median") |
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.
Notice typo veectorKey. A few instances in this file.
| self.process.calculateActions.meanSky = MeanAction(colKey=f"{{band}}_{self.fluxType}") | ||
| self.process.calculateActions.stdevSky = StdevAction(colKey=f"{{band}}_{self.fluxType}") | ||
| self.process.calculateActions.sigmaMADSky = SigmaMadAction(colKey=f"{{band}}_{self.fluxType}") | ||
| self.process.calculateActions.medianSky = MedianAction(veectorKey=f"{{band}}_{self.fluxType}") |
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.
veectorKey several instances
| self.scalarActions.median = MedianAction(colKey=self.columnKey) # type: ignore | ||
| self.scalarActions.sigmaMad = SigmaMadAction(colKey=self.columnKey) # type: ignore | ||
| self.scalarActions.count = CountAction(colKey=self.columnKey) # type: ignore | ||
| self.scalarActions.median = MedianAction(veectorKey=self.vectorKey) # type: ignore |
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.
veectorKey several instances
| multiple = ConfigurableActionStructField[ScalarAction](doc="Multiple Actions") | ||
|
|
||
| def getInputSchema(self) -> KeyedDataSchema: | ||
| return (("a", Vector),) |
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.
veectorKey several instances
bechtol
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.
I have searches all the files for any instances of columnKey and colKey and do not find any instances.
There are multiple files that have veectorKey typo. Looks good once the typo is fixed.
No description provided.