Skip to content

Commit

Permalink
addressed new linter warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Dylan Bourque committed Feb 23, 2023
1 parent 1396590 commit d8716d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/store/pg.go
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ func (p *PostgresClient) GetDependees(ctx context.Context, id, version string, p

// getModuleVersionID executes a database query to translate the specified module and version to the
// corresponding PKEY in the module_version table, creating the module and/or version if necessary
func getModuleVersionID(ctx context.Context, db database, mod, ver string, log func(string, ...any)) (int32, error) {
func getModuleVersionID(ctx context.Context, db database, mod, ver string, log func(string, ...any)) (int32, error) { //nolint: unused // not calling this but hanging onto it for now
q := psql.
Select("mv.id").
From("module_version mv").
Expand Down

0 comments on commit d8716d4

Please sign in to comment.