Skip to content

Commit 2fb3fa8

Browse files
committed
remove unnecessary python3 imports
we are using python3, these imports are no longer necessary. in order to remove the `future` library, we might as well remove these dependencies (even if it works with them)
1 parent 42745d8 commit 2fb3fa8

File tree

4 files changed

+0
-9
lines changed

4 files changed

+0
-9
lines changed

vmrunner/boot.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33

44
# pylint: disable=invalid-name
55

6-
from __future__ import print_function
7-
86
import os
97
import sys
108
import argparse

vmrunner/prettify.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
# pylint: disable=invalid-name,line-too-long
55

6-
from __future__ import print_function
76
from builtins import str
87
from builtins import range
98

vmrunner/validate_vm.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33

44
# pylint: disable=invalid-name
55

6-
from __future__ import print_function
7-
86
import json
97
import sys
108
import os

vmrunner/vmrunner.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@
55

66
# pylint: disable=line-too-long, too-many-lines, invalid-name, fixme, broad-exception-raised, broad-exception-caught, too-many-arguments, too-many-branches, too-many-statements, too-many-instance-attributes, too-many-locals
77

8-
from __future__ import print_function
9-
from __future__ import absolute_import
10-
11-
128
from builtins import hex
139
from builtins import chr
1410
from builtins import str

0 commit comments

Comments
 (0)