Skip to content

Commit 83ccd8d

Browse files
committed
chore: remove uneeded type assertion
1 parent 17fce00 commit 83ccd8d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/commands/package/convert.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
import { Flags, loglevel, orgApiVersionFlagWithDeprecations, SfCommand } from '@salesforce/sf-plugins-core';
18-
import { Lifecycle, Messages, SfError, SfProject } from '@salesforce/core';
18+
import { Lifecycle, Messages, SfError } from '@salesforce/core';
1919
import {
2020
INSTALL_URL_BASE,
2121
Package,
@@ -143,7 +143,7 @@ export class PackageConvert extends SfCommand<PackageVersionCreateRequestResult>
143143
patchversion: flags['patch-version'] as string,
144144
codecoverage: flags['code-coverage'] as boolean,
145145
},
146-
this.project as SfProject
146+
this.project
147147
);
148148

149149
switch (result.Status) {

0 commit comments

Comments
 (0)