Skip to content

Commit

Permalink
Apply Prettier format
Browse files Browse the repository at this point in the history
Signed-off-by: Salomon Popp <salomon.popp@bakdata.com>
  • Loading branch information
disrupted committed Jun 27, 2024
1 parent 3a8c824 commit 1f7e987
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion frontend/src/app/services/backend.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ import { EventObject } from '../types/event';
providedIn: 'root',
})
export class MWABackendService extends BackendService {
constructor(public http: HttpClient, public snack: SnackBarService) {
constructor(
public http: HttpClient,
public snack: SnackBarService,
) {
super(http, snack);
}

Expand Down
2 changes: 1 addition & 1 deletion frontend/src/app/shared/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ export function getPredictorExtensionSpec(
predictor: PredictorSpec,
): PredictorExtensionSpec {
if (predictor.model) {
return predictor.model
return predictor.model;
} else {
for (const predictorType of Object.values(PredictorType)) {
if (predictorType in predictor) {
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
Expand Down

0 comments on commit 1f7e987

Please sign in to comment.