Skip to content

Commit d36a29f

Browse files
committed
Run prettier.
1 parent f7936fe commit d36a29f

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

lib/poetry.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ function pyprojectTomlToRequirements() {
6262
fse.moveSync(
6363
sourceRequirements,
6464
path.join(this.servicePath, '.serverless', 'requirements.txt'),
65-
{ "overwrite": true }
65+
{ overwrite: true }
6666
);
6767
}
6868

test.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,7 @@ const availablePythons = (() => {
128128
);
129129
} else {
130130
// For running outside of CI
131-
binaries.push(
132-
'python',
133-
);
131+
binaries.push('python');
134132
}
135133
const exe = process.platform === 'win32' ? '.exe' : '';
136134
for (const bin of binaries) {

0 commit comments

Comments
 (0)