Skip to content

Commit

Permalink
prettier fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
ashutosh-bansal-2136 committed Jul 21, 2021
1 parent f360bc3 commit 8913fba
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/providers/aws-s3.provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,13 @@ export class AwsS3Provider implements Provider<AWS.S3> {
@inject(AWSS3Bindings.Config)
private readonly config: AwsS3Config,
) {
AWS.config.update(Object.assign({}, {signatureVersion: this.config.signatureVersion}, this.config));
AWS.config.update(
Object.assign(
{},
{signatureVersion: this.config.signatureVersion},
this.config,
),
);
}
value() {
return new AWS.S3();
Expand Down

0 comments on commit 8913fba

Please sign in to comment.