Update pipenvlib.py

Fix typo in some method comments in `pipenvlib.py`.
This commit is contained in:
cls1991
2018-01-11 11:30:55 +08:00
committed by GitHub
parent 778131b176
commit 11c6708193
+2 -2
View File
@@ -20,7 +20,7 @@ class Dependency(object):
class LockedDependency(object):
"""A Locked Dependency"""
"""A Locked Dependency."""
def __init__(self, name, constraint, hashes):
self.name = name
@@ -168,7 +168,7 @@ class PipenvProject(object):
return [l for l in gen()]
def _run(self, cmd):
"""Run a Pipenv command for the Pipenv project.."""
"""Run a Pipenv command for the Pipenv project."""
return delegator.run('pipenv {0}'.format(cmd), cwd=self.home)
def install(self, package_name, constraint=None, dev=False):