File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -180,14 +180,14 @@ def _display_tree(self,
180
180
break
181
181
182
182
dependencies = sorted (dependencies , key = lambda x : x .name )
183
- tree_bar = previous_tree_bar + ' ├'
183
+ tree_bar = previous_tree_bar + ' ├'
184
184
i = 0
185
185
total = len (dependencies )
186
186
for dependency in dependencies :
187
187
i += 1
188
188
current_tree = packages_in_tree
189
189
if i == total :
190
- tree_bar = previous_tree_bar + '└'
190
+ tree_bar = previous_tree_bar + ' └'
191
191
192
192
color_ident = level % len (self .colors )
193
193
color = self .colors [color_ident ]
@@ -196,7 +196,7 @@ def _display_tree(self,
196
196
if dependency .name in current_tree :
197
197
circular_warn = '(circular dependency aborted here)'
198
198
199
- info = f'{ tree_bar } ── <{ color } >{ dependency .name } </{ color } ' \
199
+ info = f'{ tree_bar } ── <{ color } >{ dependency .name } </{ color } > ' \
200
200
f'{ dependency .pretty_constraint } { circular_warn } '
201
201
self ._write_tree_line (info )
202
202
You can’t perform that action at this time.
0 commit comments