Merge pull request #2322 from rcgale/master

Fixed issue where multiple csvs could not load
This commit is contained in:
Reuben Morais 2019-08-26 22:46:50 +02:00 committed by GitHub
commit 7e96961e35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,7 +27,7 @@ def read_csvs(csv_files):
if source_data is None:
source_data = file
else:
source_data = source_data.append(file)
source_data = source_data.append(file, ignore_index=True)
return source_data