## Versions * Elixir: 1.15.2 (compiled with Erlang/OTP 26) * Styler: 0.8.3 ## Example Input ```elixir Timex.now("Europe/London") ``` ## Stacktrace / Current Behaviour Styler converts `Timex.now/1` to `DateTime.utc_now/1`, which expects a calendar or unit (not a timezone). This is the formatted code: ```elixir DateTime.utc_now("Europe/London") ``` I believe the correct conversion should be: ```elixir DateTime.now!("Europe/London") ```