mirror of
https://github.com/mwisnowski/mtg_python_deckbuilder.git
synced 2025-12-17 16:10:12 +01: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)
|
r = requests.get(url)
|
||||||
with open('csv_files/cards.csv', 'wb') as outputfile:
|
with open('csv_files/cards.csv', 'wb') as outputfile:
|
||||||
outputfile.write(r.content)
|
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')
|
df['colorIdentity'] = df['colorIdentity'].fillna('None')
|
||||||
|
|
||||||
print('Checking for color identity sorted files.')
|
print('Checking for color identity sorted files.')
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue