Skip to content

Commit 34da39c

Browse files
committed
Please linter
1 parent 0520f55 commit 34da39c

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

setupbase.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -218,10 +218,8 @@ def find_entry_points():
218218
'ipython%s = IPython:start_ipython',
219219
]
220220
major_suffix = str(sys.version_info[0])
221-
return (
222-
[e % "" for e in ep]
223-
+ [e % major_suffix for e in ep]
224-
)
221+
return [e % "" for e in ep] + [e % major_suffix for e in ep]
222+
225223

226224
class install_lib_symlink(Command):
227225
user_options = [

0 commit comments

Comments
 (0)