Skip to content

Commit

Permalink
fix sonar issues
Browse files Browse the repository at this point in the history
  • Loading branch information
magicmatatjahu committed Sep 28, 2022
1 parent ee95ff1 commit ed35702
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/base.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Command } from '@oclif/core';

export default abstract class extends Command {
async catch(err: Error & { exitCode?: number | undefined; }): Promise<any> {
async catch(err: Error & { exitCode?: number; }): Promise<any> {
try {
return await super.catch(err);
} catch (e: any) {
Expand Down

0 comments on commit ed35702

Please sign in to comment.