From 3b1bd9c6e78584159eaa2cc47a5aefbe3d306625 Mon Sep 17 00:00:00 2001 From: Tobias Buck Date: Wed, 5 Feb 2025 22:06:05 +0100 Subject: [PATCH] Update rotation.py remove unused keyword argument type --- rubix/core/rotation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rubix/core/rotation.py b/rubix/core/rotation.py index 01d9e52..c5d68b0 100644 --- a/rubix/core/rotation.py +++ b/rubix/core/rotation.py @@ -71,7 +71,7 @@ def get_galaxy_rotation(config: dict): gamma = config["galaxy"]["rotation"]["gamma"] @jaxtyped(typechecker=typechecker) - def rotate_galaxy(rubixdata: RubixData, type: str = "face-on") -> RubixData: + def rotate_galaxy(rubixdata: RubixData) -> RubixData: logger.info(f"Rotating galaxy with alpha={alpha}, beta={beta}, gamma={gamma}") for particle_type in ["stars", "gas"]: