10 lines
168 B
Python
10 lines
168 B
Python
import datetime
|
|
|
|
from typing import Any
|
|
|
|
class Clock:
|
|
def __init__(self):
|
|
pass
|
|
|
|
def transform(self, time: datetime.datetime) -> Any:
|
|
return time |