Issues (158)

doorpi/status/status_lib/status_time.py (3 issues)

1
#!/usr/bin/env python
2
# -*- coding: utf-8 -*-
3
4
import logging
5
logger = logging.getLogger(__name__)
6
logger.debug("%s loaded", __name__)
7
8
from datetime import datetime
9
10
def get(*args, **kwargs):
0 ignored issues
show
The argument kwargs seems to be unused.
Loading history...
The argument args seems to be unused.
Loading history...
11
    return str(datetime.now())
12
13
def is_active(doorpi_object):
0 ignored issues
show
The argument doorpi_object seems to be unused.
Loading history...
14
    return True
15