Skip to content

Commit

Permalink
pipenv/utils/requirements.py - fix quotation for CI check
Browse files Browse the repository at this point in the history
  • Loading branch information
ngeorgiev-ttech authored and oz123 committed Dec 15, 2023
1 parent b1f4c38 commit 48d3232
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipenv/utils/requirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def import_requirements(project, r=None, dev=False, categories=None):
else:
package_string = str(package.req)
if package.markers:
package_string += f' ; {package.markers}'
package_string += f" ; {package.markers}"
if categories:
for category in categories:
project.add_package_to_pipfile(
Expand Down

0 comments on commit 48d3232

Please sign in to comment.