Skip to content

Commit 80955cc

Browse files
committed
style: prettify
1 parent 5803d5b commit 80955cc

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

lib/pipenv.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,13 @@ async function pipfileToRequirements() {
8989
if (stderrBufferContent.includes('FileNotFoundError')) {
9090
// No previous Pipfile.lock, we will try to generate it here
9191
if (this.log) {
92-
this.log.warning('No Pipfile.lock found! Review https://pipenv.pypa.io/en/latest/pipfile/ for recommendations.');
92+
this.log.warning(
93+
'No Pipfile.lock found! Review https://pipenv.pypa.io/en/latest/pipfile/ for recommendations.'
94+
);
9395
} else {
94-
this.serverless.cli.log('WARNING: No Pipfile.lock found! Review https://pipenv.pypa.io/en/latest/pipfile/ for recommendations.');
96+
this.serverless.cli.log(
97+
'WARNING: No Pipfile.lock found! Review https://pipenv.pypa.io/en/latest/pipfile/ for recommendations.'
98+
);
9599
}
96100
await spawn('pipenv', ['lock'], {
97101
cwd: this.servicePath,

0 commit comments

Comments
 (0)