File tree 6 files changed +14
-9
lines changed
6 files changed +14
-9
lines changed Original file line number Diff line number Diff line change @@ -50,8 +50,9 @@ def populate_zones(
50
50
firstColumnFileNames ,
51
51
secondColumnFileNames ,
52
52
thirdColumnFileNames ,
53
- firstColumnArrowMap ,
54
- secondColumnArrowMap ,
53
+ firstColumnArrowMap = {},
54
+ secondColumnArrowMap = {},
55
+ thirdColumnArrowMap = {},
55
56
):
56
57
for x in self .repo .index .diff (None ):
57
58
if "git-sim_media" not in x .a_path :
Original file line number Diff line number Diff line change @@ -85,8 +85,9 @@ def populate_zones(
85
85
firstColumnFileNames ,
86
86
secondColumnFileNames ,
87
87
thirdColumnFileNames ,
88
- firstColumnArrowMap ,
89
- secondColumnArrowMap ,
88
+ firstColumnArrowMap = {},
89
+ secondColumnArrowMap = {},
90
+ thirdColumnArrowMap = {},
90
91
):
91
92
for x in self .repo .index .diff (None ):
92
93
if "git-sim_media" not in x .a_path :
Original file line number Diff line number Diff line change @@ -115,6 +115,7 @@ def populate_zones(
115
115
thirdColumnFileNames ,
116
116
firstColumnArrowMap = {},
117
117
secondColumnArrowMap = {},
118
+ thirdColumnArrowMap = {},
118
119
):
119
120
for commit in self .commitsSinceResetTo :
120
121
if commit .hexsha == self .resetTo .hexsha :
Original file line number Diff line number Diff line change @@ -48,8 +48,9 @@ def populate_zones(
48
48
firstColumnFileNames ,
49
49
secondColumnFileNames ,
50
50
thirdColumnFileNames ,
51
- firstColumnArrowMap ,
52
- secondColumnArrowMap ,
51
+ firstColumnArrowMap = {},
52
+ secondColumnArrowMap = {},
53
+ thirdColumnArrowMap = {},
53
54
):
54
55
for x in self .repo .index .diff (None ):
55
56
if "git-sim_media" not in x .a_path :
Original file line number Diff line number Diff line change @@ -153,6 +153,7 @@ def populate_zones(
153
153
thirdColumnFileNames ,
154
154
firstColumnArrowMap = {},
155
155
secondColumnArrowMap = {},
156
+ thirdColumnArrowMap = {},
156
157
):
157
158
for filename in self .revert .stats .files :
158
159
secondColumnFileNames .add (filename )
Original file line number Diff line number Diff line change @@ -144,9 +144,9 @@ def populate_zones(
144
144
firstColumnFileNames ,
145
145
secondColumnFileNames ,
146
146
thirdColumnFileNames ,
147
- firstColumnArrowMap ,
148
- secondColumnArrowMap ,
149
- thirdColumnArrowMap ,
147
+ firstColumnArrowMap = {} ,
148
+ secondColumnArrowMap = {} ,
149
+ thirdColumnArrowMap = {} ,
150
150
):
151
151
152
152
if self .command in [StashSubCommand .POP , StashSubCommand .APPLY ]:
You can’t perform that action at this time.
0 commit comments