Skip to content

Commit

Permalink
lib: apply linter to boavizta.
Browse files Browse the repository at this point in the history
  • Loading branch information
narekhovhannisyan committed Aug 28, 2023
1 parent bc970aa commit f20308b
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/lib/boavizta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,9 @@ abstract class BoaviztaImpactModel implements IImpactModelInterface {
if (Array.isArray(observations)) {
const results = [];
for (const observation of observations) {
const usageResult =
await this.calculateUsageForObservation(observation);
const usageResult = await this.calculateUsageForObservation(
observation
);
results.push(usageResult);
}
return results;
Expand Down Expand Up @@ -252,8 +253,9 @@ export class BoaviztaCloudImpactModel
this.instanceTypes[provider] === undefined ||
this.instanceTypes[provider].length === 0
) {
this.instanceTypes[provider] =
await this.supportedInstancesList(provider);
this.instanceTypes[provider] = await this.supportedInstancesList(
provider
);
}

if ('instance_type' in staticParamsCast) {
Expand Down

0 comments on commit f20308b

Please sign in to comment.