-
Notifications
You must be signed in to change notification settings - Fork 2
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
Add error bar intents #45
Conversation
…into intents # Conflicts: # xicam/XPCS/ingestors/__init__.py # xicam/XPCS/projectors/nexus.py
@@ -125,7 +125,7 @@ def ingest_nxXPCS(paths): | |||
'shape': (g2.shape[0],)}, | |||
'g2_roi_names': {'source': source, | |||
'dtype': 'string', | |||
'shape': []}, | |||
'shape': tuple()}, |
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.
why does this need to be tuple()
instead of []
?
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'm don't think it has to be. I was doing a merge at the time and ran into a conflict between those options; chose tuple because shapes are tupley
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.
just wondering 😄 I think that makes sense then; a tuple is more like a shape than a list since it can't grow...
No description provided.