File tree Expand file tree Collapse file tree 6 files changed +14
-9
lines changed Expand file tree Collapse file tree 6 files changed +14
-9
lines changed Original file line number Diff line number Diff line change @@ -50,8 +50,9 @@ def populate_zones(
5050 firstColumnFileNames ,
5151 secondColumnFileNames ,
5252 thirdColumnFileNames ,
53- firstColumnArrowMap ,
54- secondColumnArrowMap ,
53+ firstColumnArrowMap = {},
54+ secondColumnArrowMap = {},
55+ thirdColumnArrowMap = {},
5556 ):
5657 for x in self .repo .index .diff (None ):
5758 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(
8585 firstColumnFileNames ,
8686 secondColumnFileNames ,
8787 thirdColumnFileNames ,
88- firstColumnArrowMap ,
89- secondColumnArrowMap ,
88+ firstColumnArrowMap = {},
89+ secondColumnArrowMap = {},
90+ thirdColumnArrowMap = {},
9091 ):
9192 for x in self .repo .index .diff (None ):
9293 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(
115115 thirdColumnFileNames ,
116116 firstColumnArrowMap = {},
117117 secondColumnArrowMap = {},
118+ thirdColumnArrowMap = {},
118119 ):
119120 for commit in self .commitsSinceResetTo :
120121 if commit .hexsha == self .resetTo .hexsha :
Original file line number Diff line number Diff line change @@ -48,8 +48,9 @@ def populate_zones(
4848 firstColumnFileNames ,
4949 secondColumnFileNames ,
5050 thirdColumnFileNames ,
51- firstColumnArrowMap ,
52- secondColumnArrowMap ,
51+ firstColumnArrowMap = {},
52+ secondColumnArrowMap = {},
53+ thirdColumnArrowMap = {},
5354 ):
5455 for x in self .repo .index .diff (None ):
5556 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(
153153 thirdColumnFileNames ,
154154 firstColumnArrowMap = {},
155155 secondColumnArrowMap = {},
156+ thirdColumnArrowMap = {},
156157 ):
157158 for filename in self .revert .stats .files :
158159 secondColumnFileNames .add (filename )
Original file line number Diff line number Diff line change @@ -144,9 +144,9 @@ def populate_zones(
144144 firstColumnFileNames ,
145145 secondColumnFileNames ,
146146 thirdColumnFileNames ,
147- firstColumnArrowMap ,
148- secondColumnArrowMap ,
149- thirdColumnArrowMap ,
147+ firstColumnArrowMap = {} ,
148+ secondColumnArrowMap = {} ,
149+ thirdColumnArrowMap = {} ,
150150 ):
151151
152152 if self .command in [StashSubCommand .POP , StashSubCommand .APPLY ]:
You can’t perform that action at this time.
0 commit comments