13 lines
No EOL
206 B
Python
13 lines
No EOL
206 B
Python
import string
|
|
from datetime import timedelta
|
|
|
|
|
|
class Display:
|
|
def __init__(
|
|
self,
|
|
drives
|
|
):
|
|
pass
|
|
|
|
def render(self, displayInterval: timedelta) -> string:
|
|
pass |