Skip to content

Commit

Permalink
Remove pre-python 3 support code
Browse files Browse the repository at this point in the history
(cherry picked from commit 4711d66)
  • Loading branch information
olpaw authored and jerboaa committed Dec 21, 2023
1 parent 75aff5f commit 526f4d8
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions substratevm/mx.substratevm/mx_substratevm.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@
#
# ----------------------------------------------------------------------------------------------------

from __future__ import print_function

import os
import re
import tempfile
Expand All @@ -38,6 +36,7 @@
from argparse import ArgumentParser
import fnmatch
import collections
from io import StringIO

import mx
import mx_compiler
Expand All @@ -56,10 +55,6 @@
import sys


if sys.version_info[0] < 3:
from StringIO import StringIO
else:
from io import StringIO

suite = mx.suite('substratevm')
svmSuites = [suite]
Expand Down

0 comments on commit 526f4d8

Please sign in to comment.