diff options
| author | 2024-06-17 04:24:14 +0800 | |
|---|---|---|
| committer | 2024-06-17 04:24:14 +0800 | |
| commit | dfec9f99d1726b3c3a4e9426f50c955fcaddb623 (patch) | |
| tree | 6037a833b14cabd5ffda9b5a09f08229994fa616 /hydro_roll/models | |
| parent | e914584e3e441a5b875e68d9443d99a745164e34 (diff) | |
| download | HydroRoll-dfec9f99d1726b3c3a4e9426f50c955fcaddb623.tar.gz HydroRoll-dfec9f99d1726b3c3a4e9426f50c955fcaddb623.zip | |
chore(format): ruff lint code
Diffstat (limited to 'hydro_roll/models')
| -rw-r--r-- | hydro_roll/models/utils.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hydro_roll/models/utils.py b/hydro_roll/models/utils.py index 73e7ba0..9e27307 100644 --- a/hydro_roll/models/utils.py +++ b/hydro_roll/models/utils.py @@ -1,6 +1,7 @@ import difflib import pickle + def find_max_similarity(input_string, string_list): max_similarity = 0 max_string = "" @@ -11,4 +12,4 @@ def find_max_similarity(input_string, string_list): max_similarity = similarity max_string = string - return max_string, max_similarity
\ No newline at end of file + return max_string, max_similarity |
