Skip to content

Commit

Permalink
fix issue#21
Browse files Browse the repository at this point in the history
  • Loading branch information
YK-Unit committed May 17, 2022
1 parent 185e215 commit 895f4d0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pipenv_setup/lockfile_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@ def format_remote_package(
return (
"install_requires",
package_name
+ " @ "
+ "@"
+ Requirement.from_pipfile(package_name, config).as_line(
include_hashes=False
).strip("-e "),
).replace("-e", ""),
)


Expand Down
4 changes: 2 additions & 2 deletions pipenv_setup/pipfile_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ def format_remote_package(
return (
"install_requires",
package_name
+ " @ "
+ "@"
+ Requirement.from_pipfile(package_name, config).as_line(
include_hashes=False
).strip("-e "),
).replace("-e", ""),
)


Expand Down

0 comments on commit 895f4d0

Please sign in to comment.