You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've noticed that the code isn't consistent between alt.Y('blah').title('blah') and alt.Y('blah', title='blah') -- I noticed this in inference but it could be more pervasive. I think the newer style is alt.Y('blah').title('blah'), so we should switch everything over to that.
I think all the instances of that inconsistency are in remove-cell tagged cells, so not the end of the world, but it would be good to ensure that code is consistent throughout, even in hidden cells
The text was updated successfully, but these errors were encountered:
Yup I almost only fixed what was visible in the book since the other syntax is still valid and it made the important changes stand out more. I agree it would be nice to have it the same everywhere, especially when grepping for something, but agree that this is low prio.
I've noticed that the code isn't consistent between
alt.Y('blah').title('blah')
andalt.Y('blah', title='blah')
-- I noticed this in inference but it could be more pervasive. I think the newer style isalt.Y('blah').title('blah')
, so we should switch everything over to that.I think all the instances of that inconsistency are in remove-cell tagged cells, so not the end of the world, but it would be good to ensure that code is consistent throughout, even in hidden cells
The text was updated successfully, but these errors were encountered: