Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions code/MyPyTutor.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
from __future__ import print_function
import sys
from argparse import ArgumentParser
import ctypes

if hasattr(ctypes, 'windll'):
ctypes.windll.shcore.SetProcessDpiAwareness(1)

ALLOWED_VERSIONS = [(3,6)] #[(3, 5), (3, 4)]

Expand Down