spanish-quizzer

An app to quiz you on Spanish vocabulary and verb conjugations
git clone https://git.ashermorgan.net/spanish-quizzer/
Log | Files | Refs | README

commit c0154ed124944c9d67b47c70453d8a56a340fa89
parent bfb76d46ec2b81b82c6a26207f10842f1d7423a9
Author: AsherMorgan <59518073+AsherMorgan@users.noreply.github.com>
Date:   Sun,  8 Mar 2020 18:56:03 -0700

Fix vocabulary directory bug.
Diffstat:
MSpanish Quizzer.py | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Spanish Quizzer.py b/Spanish Quizzer.py @@ -1,5 +1,6 @@ # Import dependencies import csv +import os import random import sys @@ -12,7 +13,7 @@ print() # Load verbs verbs = [] -with open(r"Verbs.csv") as csvfile: +with open(os.path.dirname(os.path.realpath(__file__)) + r"/Verbs.csv") as csvfile: reader = csv.reader(csvfile) for row in reader: verbs +=[row]