chore: ⚰️ Remove dead code and unused imports

This commit is contained in:
Jesse Wierzbinski 2024-05-28 15:14:24 -10:00
parent 3a37790315
commit f87bcbd0da
No known key found for this signature in database
37 changed files with 37 additions and 86 deletions

View file

@ -28,7 +28,7 @@ export default class UserDelete extends UserFinderCommand<typeof UserDelete> {
};
public async run(): Promise<void> {
const { flags, args } = await this.parse(UserDelete);
const { flags } = await this.parse(UserDelete);
const users = await this.findUsers();

View file

@ -37,7 +37,7 @@ export default class UserReset extends UserFinderCommand<typeof UserReset> {
};
public async run(): Promise<void> {
const { flags, args } = await this.parse(UserReset);
const { flags } = await this.parse(UserReset);
const users = await this.findUsers();