Skip to content

Commit

Permalink
Remove 'from __future__ import print_function' lines
Browse files Browse the repository at this point in the history
  • Loading branch information
YannickJadoul committed Feb 4, 2020
1 parent c070192 commit cf8fda5
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 8 deletions.
3 changes: 1 addition & 2 deletions bin/run_test.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#!/usr/bin/env python
#!/usr/bin/env python3

from __future__ import print_function
import os, sys, subprocess, shutil


Expand Down
3 changes: 1 addition & 2 deletions bin/run_tests.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#!/usr/bin/env python
#!/usr/bin/env python3

from __future__ import print_function
import os, sys, subprocess, shutil, json
from glob import glob

Expand Down
1 change: 0 additions & 1 deletion cibuildwheel/__main__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from __future__ import print_function
import argparse, os, subprocess, sys, textwrap

import cibuildwheel
Expand Down
1 change: 0 additions & 1 deletion cibuildwheel/linux.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from __future__ import print_function
import os, shlex, subprocess, sys, textwrap, uuid
from collections import namedtuple
from .util import prepare_command, get_build_verbosity_extra_flags
Expand Down
1 change: 0 additions & 1 deletion cibuildwheel/macos.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from __future__ import print_function
import tempfile
import os, subprocess, shlex, sys, shutil
from collections import namedtuple
Expand Down
1 change: 0 additions & 1 deletion cibuildwheel/windows.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from __future__ import print_function
import os, tempfile, subprocess, shutil, sys
from collections import namedtuple
from glob import glob
Expand Down

0 comments on commit cf8fda5

Please sign in to comment.