Skip to content

Commit 5f54cf9

Browse files
committed
chore: flake8
1 parent d990e33 commit 5f54cf9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

datamaxi/lib/utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import pandas as pd
44
from functools import wraps
55
from datamaxi.error import ParameterRequiredError
6+
from datamaxi.error import AtLeastOneParameterRequiredError
67

78

89
def to_float(x):
@@ -45,7 +46,7 @@ def check_at_least_one_set_parameters(params):
4546
check_required_parameter(p[0], p[1])
4647
at_least_one_set = True
4748
break
48-
except:
49+
except: # flake8: noqa: E722
4950
pass
5051

5152
if not at_least_one_set:

0 commit comments

Comments
 (0)