Skip to content

Commit

Permalink
wrap long line
Browse files Browse the repository at this point in the history
  • Loading branch information
jdebacker committed Sep 5, 2023
1 parent fa9a760 commit 4ff4e91
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ccc/calcfunctions.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ def update_depr_methods(df, p, dp):
deprec_df = pd.DataFrame(dp.asset)
print("deprec_df", deprec_df.head())
# split out value into two columns
deprec_df = deprec_df.join(pd.DataFrame(deprec_df.pop('value').values.tolist()))
deprec_df = deprec_df.join(
pd.DataFrame(deprec_df.pop('value').values.tolist()))
print("deprec_df 2", deprec_df.head())
# drop information duplicated in asset dataframe
deprec_df.drop(columns=['asset_name', 'minor_asset_group',
Expand Down

0 comments on commit 4ff4e91

Please sign in to comment.