Skip to content

Commit 74baeb4

Browse files
Merge pull request #21 from cclauss/patch-1
Undefined name: Arrow() --> manim.Arrow() like line 62
2 parents dafed86 + 85c8014 commit 74baeb4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

git_sim/git_sim_add.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import sys
22

3+
import git
34
import manim as m
45

56
from git_sim.git_sim_base_command import GitSimBaseCommand
@@ -43,7 +44,7 @@ def populate_zones(self, firstColumnFileNames, secondColumnFileNames, thirdColum
4344
for name in self.scene.args.name:
4445
if name == x.a_path:
4546
thirdColumnFileNames.add(x.a_path)
46-
secondColumnArrowMap[x.a_path] = Arrow(stroke_width=3, color=self.scene.fontColor)
47+
secondColumnArrowMap[x.a_path] = m.Arrow(stroke_width=3, color=self.scene.fontColor)
4748
try:
4849
for y in self.repo.index.diff("HEAD"):
4950
if "git-sim_media" not in y.a_path:

0 commit comments

Comments
 (0)