Skip to content

Commit

Permalink
Please linter
Browse files Browse the repository at this point in the history
  • Loading branch information
Carreau committed Jan 3, 2023
1 parent 0520f55 commit 34da39c
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions setupbase.py
Expand Up @@ -218,10 +218,8 @@ def find_entry_points():
'ipython%s = IPython:start_ipython',
]
major_suffix = str(sys.version_info[0])
return (
[e % "" for e in ep]
+ [e % major_suffix for e in ep]
)
return [e % "" for e in ep] + [e % major_suffix for e in ep]


class install_lib_symlink(Command):
user_options = [
Expand Down

0 comments on commit 34da39c

Please sign in to comment.