pipertool icon indicating copy to clipboard operation
pipertool copied to clipboard

redundant code in setup.py

Open KonstToIT opened this issue 3 years ago • 0 comments

I tried to understand some code in this project and one line seems strange: dependency_links = [x.strip().replace('git+', '') for x in all_reqs \ if 'git+' not in x] I think a part x.strip().replace('git+', '') is redundant and must be replaced by x.strip()

KonstToIT avatar Dec 12 '22 21:12 KonstToIT