kvesik / examgeneration

exam generation script for random-sampled exams
GNU General Public License v3.0
2 stars 0 forks source link

Difference in imports: Mac vs. PC? #1

Closed kchall closed 3 years ago

kchall commented 3 years ago

In generateexams.py, Lines 14 and 15 currently read:

from src.Exam import Question, Exam from src import examio as examio

but I had to change them to the following to get them to work on my Mac:

from Exam import Question, Exam import examio as examio

and similarly change Line 14 in examio to be

from Exam import Question


Not sure if this is a Mac / PC difference and whether that's likely to cause issues?

kvesik commented 3 years ago

Thanks for noticing that! That is not a mac/PC thing, but rather a "PyCharm was being annoying" thing; I will tidy it up and update.