Skip to content

Conversation

BryR0
Copy link

@BryR0 BryR0 commented Aug 20, 2024

for error:

#113

'DataFrame' object has no attribute 'append'

replace from:
extra_concatenated = extra_concatenated.append(concatenated)

to
try:
extra_concatenated = extra_concatenated.append(concatenated)
except Exception as e:
extra_concatenated = pd.concat([extra_concatenated,concatenated])

BryR0 added 2 commits August 20, 2024 08:40
pd.append Deprecated since version 1.4.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant