mirror of
https://github.com/kennethreitz/pipenvlib.git
synced 2026-06-05 15:00:17 +00:00
Merge pull request #5 from cls1991/master
Typo fix in some methods comments.
This commit is contained in:
+2
-2
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user