Himanshu Machhi commited on
Update vs_code/00000004-0005-4000-8000-000000000030/test_suite.py
Browse files
vs_code/00000004-0005-4000-8000-000000000030/test_suite.py
CHANGED
|
@@ -11,7 +11,8 @@ import sys
|
|
| 11 |
|
| 12 |
|
| 13 |
def _load_user_module():
|
| 14 |
-
|
|
|
|
| 15 |
if not os.path.exists(user_path):
|
| 16 |
return None
|
| 17 |
spec = importlib.util.spec_from_file_location("user_fizzbuzz", user_path)
|
|
|
|
| 11 |
|
| 12 |
|
| 13 |
def _load_user_module():
|
| 14 |
+
here = os.path.dirname(os.path.abspath(__file__))
|
| 15 |
+
user_path = os.path.join(here, "fizzbuzz.py")
|
| 16 |
if not os.path.exists(user_path):
|
| 17 |
return None
|
| 18 |
spec = importlib.util.spec_from_file_location("user_fizzbuzz", user_path)
|