(df: pd.DataFrame, item: str)
| 117 | |
| 118 | @staticmethod |
| 119 | def pop_from_dataframe(df: pd.DataFrame, item: str): |
| 120 | ret = None |
| 121 | try: |
| 122 | ret = df.pop(item).to_numpy().squeeze() |
| 123 | except KeyError: |
| 124 | pass |
| 125 | return ret |
| 126 | |
| 127 | |
| 128 | class NodeData(BaseData): |
no outgoing calls
no test coverage detected