Skip to content

Commit b323e6b

Browse files
committed
fix indentation
1 parent cab62ef commit b323e6b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/@aws-cdk/aws-eks/lib/cluster.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2286,8 +2286,8 @@ function nodeTypeForInstanceType(instanceType: ec2.InstanceType) {
22862286
function cpuArchForInstanceType(instanceType: ec2.InstanceType) {
22872287
return INSTANCE_TYPES.graviton2.includes(instanceType.toString().substring(0, 3)) ? CpuArch.ARM_64 :
22882288
INSTANCE_TYPES.graviton3.includes(instanceType.toString().substring(0, 3)) ? CpuArch.ARM_64 :
2289-
INSTANCE_TYPES.graviton.includes(instanceType.toString().substring(0, 2)) ? CpuArch.ARM_64 :
2290-
CpuArch.X86_64;
2289+
INSTANCE_TYPES.graviton.includes(instanceType.toString().substring(0, 2)) ? CpuArch.ARM_64 :
2290+
CpuArch.X86_64;
22912291
}
22922292

22932293
function flatten<A>(xss: A[][]): A[] {

0 commit comments

Comments
 (0)