Merge pull request #21036 from edx/INCR-386

INCR-386 python3 compatibility
This commit is contained in:
Ayub
2019-07-22 14:23:06 +05:00
committed by GitHub
3 changed files with 9 additions and 3 deletions

View File

@@ -5,6 +5,8 @@
# add them below. This file is consumed by
# scripts/dead_code/find-dead-code.sh
from __future__ import absolute_import
from vulture.whitelist_utils import Whitelist
view_whitelilst = Whitelist()

View File

@@ -1,4 +1,5 @@
from __future__ import print_function
from __future__ import absolute_import, print_function
import argparse
import csv
import json

View File

@@ -4,12 +4,15 @@ lists of each pytest worker.
Assumes the following format:
[test-suite] [worker] RESULT test
"""
import click
from __future__ import absolute_import
import io
import re
import os
import re
import shutil
import click
@click.command()
@click.option(