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
right now, calling RRDataContainer.get_df() is the same as calling RRDataContainer.dataframe.
I'm guessing that maybe you want users to call get_df() to prevent them modifying RRDataContainer.dataframe. If not, feel free to ignore the rest of this message. If you are trying to prevent modification of dataframe itself, you should rename RRDataContainer.dataframe as RRDataContainer._dataframe (attributes beginning with an underscore are not user-facing in python). You can also use a @property decorator to avoid the need for an empty open-close parentheses. See documentation for more details.
The text was updated successfully, but these errors were encountered:
right now, calling
RRDataContainer.get_df()
is the same as callingRRDataContainer.dataframe
.I'm guessing that maybe you want users to call
get_df()
to prevent them modifying RRDataContainer.dataframe. If not, feel free to ignore the rest of this message. If you are trying to prevent modification of dataframe itself, you should rename RRDataContainer.dataframe asRRDataContainer._dataframe
(attributes beginning with an underscore are not user-facing in python). You can also use a@property
decorator to avoid the need for an empty open-close parentheses. See documentation for more details.The text was updated successfully, but these errors were encountered: