From c179780a31393a71ec0a17e177c24e96a141f737 Mon Sep 17 00:00:00 2001 From: Erick Zanardo Date: Wed, 30 Mar 2022 10:24:45 -0300 Subject: [PATCH] fix: lint --- packages/pinball_components/lib/src/components/spaceship.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/pinball_components/lib/src/components/spaceship.dart b/packages/pinball_components/lib/src/components/spaceship.dart index 4bc21e4e..257f7fcd 100644 --- a/packages/pinball_components/lib/src/components/spaceship.dart +++ b/packages/pinball_components/lib/src/components/spaceship.dart @@ -238,7 +238,7 @@ class SpaceshipWall extends BodyComponent with InitialPosition, Layered { final bodyDef = BodyDef() ..userData = this ..position = initialPosition - ..angle = 90 * pi /172 + ..angle = 90 * pi / 172 ..type = BodyType.static; return world.createBody(bodyDef)