Skip to content

Commit

Permalink
fix FutureWarning
Browse files Browse the repository at this point in the history
  • Loading branch information
bl-young committed Aug 29, 2023
1 parent 06fdbe1 commit dc826d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/build_lcia_mapping.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
import lciafmt
lcia_lciafmt = lciafmt.get_method(lcia_name, endpoint = False)
lcia_endpoint = lciafmt.get_method(lcia_name, endpoint = True)
lcia_lciafmt = lcia_lciafmt.append(lcia_endpoint, ignore_index = True)
lcia_lciafmt = pd.concat([lcia_lciafmt, lcia_endpoint], ignore_index = True)

# Keep only flowable and category
lcia_lciafmt = lcia_lciafmt[['Flowable', 'Context']]
lcia_lciafmt = lcia_lciafmt.drop_duplicates()
Expand Down

0 comments on commit dc826d2

Please sign in to comment.