Merge pull request #5 from cls1991/master

Typo fix in some methods comments.
This commit is contained in:
2018-01-11 08:08:18 -05:00
committed by GitHub
+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):