Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrown99c committed Aug 30, 2024
1 parent 0a9cb4c commit b3babd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion depthai_sdk/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
with open('requirements.txt') as f:
requirements = f.readlines()

install_requires = [requirement for requirement in requirements if '--' not in requirement]
install_requires = [requirement.strip() for requirement in requirements if '--' not in requirement]

setup(
name='depthai-sdk',
Expand Down

0 comments on commit b3babd2

Please sign in to comment.