Merge pull request #1298 from cclauss/patch-2

Missing comma in __all__ tuple?
This commit is contained in:
Nate Prewitt
2018-01-14 00:06:45 -08:00
committed by GitHub
+1 -1
View File
@@ -18,7 +18,7 @@ PY3 = sys.version_info[0] >= 3
__all__ = (
'red', 'green', 'yellow', 'blue',
'black', 'magenta', 'cyan', 'white', 'normal'
'black', 'magenta', 'cyan', 'white', 'normal',
'clean', 'disable',
)