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

Commit

Permalink
fix #9
Browse files Browse the repository at this point in the history
  • Loading branch information
3ximus committed Oct 19, 2020
1 parent f0a51d7 commit f455a15
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions apps/python/F12020Leaderboard/F12020Leaderboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@
import ac
import acsys

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

import ctypes
from ctypes import wintypes
Expand Down

0 comments on commit f455a15

Please sign in to comment.