Преглед на файлове

Merge remote-tracking branch 'origin/master'

Danny преди 1 година
родител
ревизия
cd8fb77aca
променени са 2 файла, в които са добавени 0 реда и са изтрити 16 реда
  1. BIN
      time_recoder/time_recorded_tables/work_time_eren.xlsx
  2. 0 16
      tool_lib/util.py

BIN
time_recoder/time_recorded_tables/work_time_eren.xlsx


+ 0 - 16
tool_lib/util.py

@@ -951,22 +951,6 @@ class LogicError(Exception):
     pass
 
 
-def round_time(dt=None, precision=60):
-    """Round a datetime object to any time lapse in seconds
-    dt : datetime.datetime object, default now.
-    roundTo : Closest number of seconds to round to, default 1 minute.
-    Author: Thierry Husson 2012 - Use it as you want but don't blame me.
-    """
-    if dt is None:
-        dt = datetime.datetime.now()
-    if isinstance(precision, datetime.timedelta):
-        precision = precision.total_seconds()
-    seconds = (dt.replace(tzinfo=None) - dt.min).seconds
-    rounding = (seconds + precision / 2) // precision * precision
-    return dt + datetime.timedelta(seconds=rounding - seconds,
-                                   microseconds=dt.microsecond)
-
-
 def chunks(lst, n):
     """Yield successive n-sized chunks from lst."""
     for i in range(0, len(lst), n):