File tree Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -15,12 +15,13 @@ name: Codacy Security Scan
15
15
16
16
on :
17
17
push :
18
- branches :
18
+ branches :
19
19
- master
20
20
- develop
21
+ - fix-warnings-2
21
22
pull_request :
22
23
# The branches below must be a subset of the branches above
23
- branches :
24
+ branches :
24
25
- master
25
26
- develop
26
27
Original file line number Diff line number Diff line change 12
12
from datetime import datetime
13
13
import copy
14
14
import time
15
- # from tzlocal import get_localzone
16
15
import pytz
17
16
18
17
from dates import parse_date_utc
@@ -78,8 +77,6 @@ def due(self):
78
77
@property
79
78
def starting (self ):
80
79
"""When did the daily start running? (That is, is it active now?)"""
81
- from dateutil import parser
82
- import datetime
83
80
if self .__task_dict ['type' ] == 'daily' :
84
81
start = parser .parse (self .__task_dictself .__task_dict ['startDate' ])
85
82
else :
Original file line number Diff line number Diff line change 8
8
import pickle
9
9
import time
10
10
import requests
11
- from dateutil import parser
11
+ # from dateutil import parser
12
12
from hab_task import HabTask
13
13
import config
14
14
You can’t perform that action at this time.
0 commit comments