Skip to content

Commit

Permalink
make linter happy :)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsimnz committed May 12, 2023
1 parent 52ccc91 commit 8aa317a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion db/schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@ import (

// addSchema takes the provided schema in SDL format, and applies it to the database,
// and creates the necessary collections, request types, etc.
func (db *db) addSchema(ctx context.Context, txn datastore.Txn, schemaString string) ([]client.CollectionDescription, error) {
func (db *db) addSchema(
ctx context.Context,
txn datastore.Txn,
schemaString string,
) ([]client.CollectionDescription, error) {
existingDescriptions, err := db.getCollectionDescriptions(ctx, txn)
if err != nil {
return nil, err
Expand Down

0 comments on commit 8aa317a

Please sign in to comment.