Skip to content

Commit 4d8e51d

Browse files
authored
Undefined name: Arrow() --> manim.Arrow() like line 62
% `flake8 . --count --select=E9,F63,F7,F82,Y --show-source --statistics` ``` ./git_sim/git_sim_add.py:46:58: F821 undefined name 'Arrow' secondColumnArrowMap[x.a_path] = Arrow(stroke_width=3, color=self.scene.fontColor) ^ 1 F821 undefined name 'Arrow' 1 ```
1 parent dafed86 commit 4d8e51d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git_sim/git_sim_add.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def populate_zones(self, firstColumnFileNames, secondColumnFileNames, thirdColum
4343
for name in self.scene.args.name:
4444
if name == x.a_path:
4545
thirdColumnFileNames.add(x.a_path)
46-
secondColumnArrowMap[x.a_path] = Arrow(stroke_width=3, color=self.scene.fontColor)
46+
secondColumnArrowMap[x.a_path] = m.Arrow(stroke_width=3, color=self.scene.fontColor)
4747
try:
4848
for y in self.repo.index.diff("HEAD"):
4949
if "git-sim_media" not in y.a_path:

0 commit comments

Comments
 (0)