Merge pull request #21036 from edx/INCR-386
INCR-386 python3 compatibility
This commit is contained in:
@@ -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()
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
from __future__ import print_function
|
||||
from __future__ import absolute_import, print_function
|
||||
|
||||
import argparse
|
||||
import csv
|
||||
import json
|
||||
|
||||
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user