Skip to content

Commit 698aef0

Browse files
author
BoboTiG
committed
Prevent export of MSS* classes in case of "from mss import *"
1 parent 7423adc commit 698aef0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

mss.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
If that URL should fail, try contacting the author.
1212
'''
1313

14-
from __future__ import (unicode_literals, print_function)
14+
from __future__ import unicode_literals, print_function, division
1515

1616
__version__ = '1.0.0'
1717
__author__ = "Mickaël 'Tiger-222' Schoentgen"
@@ -25,7 +25,7 @@
2525
in supporting documentation or portions thereof, including
2626
modifications, that you make.
2727
'''
28-
__all__ = ['mss', 'MSSLinux', 'MSSMac', 'MSSWindows', 'ScreenshotError']
28+
__all__ = ['mss', 'ScreenshotError']
2929

3030
from struct import pack
3131
from platform import system

0 commit comments

Comments
 (0)