diff --git a/Python3.md b/Python3.md index 4c5f9f3..35913da 100644 --- a/Python3.md +++ b/Python3.md @@ -58,7 +58,7 @@ And replace the `from builtins import *` variant, if any, with: ```#!python from future.utils import PY2 if PY2: - from builtins import filter, map, zip, ascii, chr, hex, input, next, oct, open, pow, round, super, bytes, dict, int, list, object, range, str, max, min # noqa: F401 + from future.builtins import filter, map, zip, ascii, chr, hex, input, next, oct, open, pow, round, super, bytes, dict, int, list, object, range, str, max, min # noqa: F401 ``` ### When things get complicated