From 11c67081933051ec2edce8002a99d85ec4b4f2e6 Mon Sep 17 00:00:00 2001 From: cls1991 Date: Thu, 11 Jan 2018 11:30:55 +0800 Subject: [PATCH] Update pipenvlib.py Fix typo in some method comments in `pipenvlib.py`. --- pipenvlib.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pipenvlib.py b/pipenvlib.py index 07f3174..7de9786 100644 --- a/pipenvlib.py +++ b/pipenvlib.py @@ -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):