Skip to content

Commit

Permalink
style: auto-formatting [CI]
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions Bot committed Oct 5, 2023
1 parent 77351a7 commit 5e5a4c3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
6 changes: 5 additions & 1 deletion src/compile/data/aggregate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,11 @@ export class AggregateNode extends DataFlowNode {
* @param dimensions string set for dimensions
* @param measures dictionary mapping field name => dict of aggregation functions and names to use
*/
constructor(parent: DataFlowNode, private dimensions: Set<string>, private measures: Measures) {
constructor(
parent: DataFlowNode,
private dimensions: Set<string>,
private measures: Measures
) {
super(parent);
}

Expand Down
5 changes: 4 additions & 1 deletion src/compile/data/timeunit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@ export class TimeUnitNode extends DataFlowNode {
return new TimeUnitNode(null, duplicate(this.timeUnits));
}

constructor(parent: DataFlowNode, private timeUnits: Dict<TimeUnitComponent>) {
constructor(
parent: DataFlowNode,
private timeUnits: Dict<TimeUnitComponent>
) {
super(parent);
}

Expand Down

0 comments on commit 5e5a4c3

Please sign in to comment.