From 44f17a373910391d792ce778e810083324558b1f Mon Sep 17 00:00:00 2001 From: Lionel GUEZ <guez@lmd.ens.fr> Date: Wed, 21 Feb 2024 17:47:14 +0100 Subject: [PATCH] Bug fix: remove useless imports --- Overlap/Analysis/extract_component_nx.py | 6 ------ Overlap/Analysis/report_graph.py | 2 -- 2 files changed, 8 deletions(-) diff --git a/Overlap/Analysis/extract_component_nx.py b/Overlap/Analysis/extract_component_nx.py index 255a3f16..e7f49d0b 100755 --- a/Overlap/Analysis/extract_component_nx.py +++ b/Overlap/Analysis/extract_component_nx.py @@ -9,15 +9,9 @@ given as argument of the script. """ -from os import path -import os -import json - import networkx as nx -import shapefile from networkx import nx_agraph -import util_eddies import report_graph def add_component(G: nx.DiGraph, source: int): diff --git a/Overlap/Analysis/report_graph.py b/Overlap/Analysis/report_graph.py index ddc15533..6795f5a6 100755 --- a/Overlap/Analysis/report_graph.py +++ b/Overlap/Analysis/report_graph.py @@ -10,10 +10,8 @@ the edgelist file given as argument of the script. from os import path import os -import json import networkx as nx -import shapefile from networkx import nx_agraph import util_eddies -- GitLab