Skip to content

Commit

Permalink
chore: fix linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
dgellow committed Sep 8, 2023
1 parent ed2bb96 commit 8c1a45c
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/strategies/krm-blueprint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import {Changelog} from '../updaters/changelog';
import {KRMBlueprintVersion} from '../updaters/krm/krm-blueprint-version';
import {BaseStrategy, BuildUpdatesOptions} from './base';
import {Update} from '../update';
import {VersionsMap, Version} from '../version';
import {VersionsMap} from '../version';

const KRMBlueprintAttribAnnotation = 'cnrm.cloud.google.com/blueprint';
const hasKRMBlueprintAttrib = (content: string) =>
Expand Down
1 change: 0 additions & 1 deletion src/strategies/python.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import {BaseStrategy, BuildUpdatesOptions, BaseStrategyOptions} from './base';
import {Update} from '../update';
import {Changelog} from '../updaters/changelog';
import {ChangelogJson} from '../updaters/changelog-json';
import {Version} from '../version';
import {SetupCfg} from '../updaters/python/setup-cfg';
import {SetupPy} from '../updaters/python/setup-py';
import {
Expand Down
2 changes: 1 addition & 1 deletion src/strategies/rust.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import {CargoToml} from '../updaters/rust/cargo-toml';
import {CargoLock} from '../updaters/rust/cargo-lock';
import {CargoManifest, parseCargoManifest} from '../updaters/rust/common';
import {BaseStrategy, BuildUpdatesOptions} from './base';
import {VersionsMap, Version} from '../version';
import {VersionsMap} from '../version';
import {Update} from '../update';

export class Rust extends BaseStrategy {
Expand Down
1 change: 0 additions & 1 deletion src/strategies/terraform-module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ import {ModuleVersion} from '../updaters/terraform/module-version';
import {MetadataVersion} from '../updaters/terraform/metadata-version';
import {BaseStrategy, BuildUpdatesOptions} from './base';
import {Update} from '../update';
import {Version} from '../version';

export class TerraformModule extends BaseStrategy {
protected async buildUpdates(
Expand Down

0 comments on commit 8c1a45c

Please sign in to comment.