File tree Expand file tree Collapse file tree 2 files changed +8
-10
lines changed Expand file tree Collapse file tree 2 files changed +8
-10
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ def get_wildcard_equivalent_dates(
25
25
if time_value == "*" :
26
26
if time_type == "day" :
27
27
return EpiRange ("10000101" , "30000101" )
28
- elif time_type == "week" :
28
+ if time_type == "week" :
29
29
return EpiRange ("100001" , "300001" )
30
30
return time_value
31
31
Original file line number Diff line number Diff line change @@ -7,15 +7,13 @@ include = 'epidatpy'
7
7
max-line-length = 120
8
8
min-public-methods = 1
9
9
disable = [
10
- " R0801" ,
11
- " E1101" ,
12
- " E0611" ,
13
- " C0114" ,
14
- " C0116" ,
15
- " C0103" ,
16
- " R0913" ,
17
- " R0914" ,
18
- " W0702" ,
10
+ " duplicate-code" ,
11
+ " invalid-name" ,
12
+ " missing-module-docstring" ,
13
+ " missing-function-docstring" ,
14
+ " too-many-arguments" ,
15
+ " too-many-locals" ,
16
+ " too-many-lines" ,
19
17
" too-many-public-methods" ,
20
18
" too-many-instance-attributes" ,
21
19
]
You can’t perform that action at this time.
0 commit comments