From 4e466b7ff8abb9be9bcf5b0effe9430135f01b0d Mon Sep 17 00:00:00 2001 From: Jenny Plunkett Date: Thu, 6 Dec 2018 10:44:36 -0600 Subject: [PATCH] Removed "ALL" from PrettyTable import --- tools/export/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/export/__init__.py b/tools/export/__init__.py index f7fac37889..1b2f2207e7 100644 --- a/tools/export/__init__.py +++ b/tools/export/__init__.py @@ -84,7 +84,7 @@ def mcu_ide_matrix(verbose_html=False): """ supported_ides = sorted(EXPORTERS.keys()) # Only use it in this function so building works without extra modules - from prettytable import PrettyTable, ALL, HEADER + from prettytable import PrettyTable, HEADER # All tests status table print table_printer = PrettyTable(["Platform"] + supported_ides, junction_char="|", hrules=HEADER)