summaryrefslogtreecommitdiff
path: root/babel/support.py
diff options
context:
space:
mode:
authorAarni Koskela <akx@iki.fi>2023-01-18 20:07:31 +0200
committerAarni Koskela <akx@iki.fi>2023-01-18 21:20:51 +0200
commit3fb72cea613ba05480a9027aa927d2c8b817d693 (patch)
treedd17d47cc814123a5e4a3e3dad212d9acf3c0b4e /babel/support.py
parent67870e3ce54d6b0a61900e2436f3ffdfa4d6a83d (diff)
downloadbabel-3fb72cea613ba05480a9027aa927d2c8b817d693.tar.gz
Apply ruff I category fixes
Diffstat (limited to 'babel/support.py')
-rw-r--r--babel/support.py15
1 files changed, 9 insertions, 6 deletions
diff --git a/babel/support.py b/babel/support.py
index 216c8f1..7092599 100644
--- a/babel/support.py
+++ b/babel/support.py
@@ -20,12 +20,15 @@ from collections.abc import Iterator
from typing import TYPE_CHECKING, Any, Callable
from babel.core import Locale
-
-from babel.dates import (format_date, format_datetime, format_time,
- format_timedelta)
-from babel.numbers import (format_compact_currency, format_compact_decimal,
- format_currency, format_decimal, format_percent,
- format_scientific)
+from babel.dates import format_date, format_datetime, format_time, format_timedelta
+from babel.numbers import (
+ format_compact_currency,
+ format_compact_decimal,
+ format_currency,
+ format_decimal,
+ format_percent,
+ format_scientific,
+)
if TYPE_CHECKING:
from typing_extensions import Literal