Skip to content
This repository was archived by the owner on Jul 24, 2022. It is now read-only.

Commit f455a15

Browse files
committed
fix #9
1 parent f0a51d7 commit f455a15

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

apps/python/F12020Leaderboard/F12020Leaderboard.py

+7
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@
66
import ac
77
import acsys
88

9+
import platform
10+
if platform.architecture()[0] == '64bit':
11+
sysdir=os.path.dirname(__file__)+'/stdlib64'
12+
else:
13+
sysdir=os.path.dirname(__file__)+'/stdlib'
14+
sys.path.insert(0, sysdir)
15+
os.environ['PATH'] = os.environ['PATH'] + ";."
916

1017
import ctypes
1118
from ctypes import wintypes

0 commit comments

Comments
 (0)