From b837441cb19bf8a1be9da967dad8c5ce7ce69d58 Mon Sep 17 00:00:00 2001 From: Konstantin Chernyshev Date: Wed, 1 Nov 2023 21:58:19 +0100 Subject: [PATCH] fix: isort --- codebleu/bleu.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/codebleu/bleu.py b/codebleu/bleu.py index d5c8bc7..be0738c 100644 --- a/codebleu/bleu.py +++ b/codebleu/bleu.py @@ -8,13 +8,12 @@ # For license information, see LICENSE.TXT """BLEU score implementation.""" -from typing import Any - import math import sys import warnings from collections import Counter from fractions import Fraction as _Fraction +from typing import Any from .utils import ngrams