From 505a86b5b87d97356bc4882ed6ecb5d0eb9fc3e4 Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Wed, 9 May 2018 14:05:14 -0700 Subject: [PATCH] Eliminate name ambiguity --- once_useful_constructs/graph_theory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/once_useful_constructs/graph_theory.py b/once_useful_constructs/graph_theory.py index 8be6cf3c..4e261068 100644 --- a/once_useful_constructs/graph_theory.py +++ b/once_useful_constructs/graph_theory.py @@ -175,7 +175,7 @@ class CompleteGraph(Graph): return Graph.__str__(self) + str(self.num_vertices) -class GraphScene(Scene): +class DiscreteGraphScene(Scene): args_list = [ (CubeGraph(),), (SampleGraph(),),