mirror of
https://github.com/mwisnowski/mtg_python_deckbuilder.git
synced 2025-09-22 04:50:46 +02:00
Fixed a typo looking at wrong location for file, testing .gitignore functionality
This commit is contained in:
parent
73ff4cad3a
commit
d7e275e38a
1 changed files with 1 additions and 1 deletions
2
main.py
2
main.py
|
@ -36,7 +36,7 @@ def initial_setup():
|
|||
r = requests.get(url)
|
||||
with open('csv_files/cards.csv', 'wb') as outputfile:
|
||||
outputfile.write(r.content)
|
||||
df = pd.read_csv('cards.csv', dtype='unicode')
|
||||
df = pd.read_csv('csv_files/cards.csv')
|
||||
df['colorIdentity'] = df['colorIdentity'].fillna('None')
|
||||
|
||||
print('Checking for color identity sorted files.')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue