mirror of
https://github.com/aljazceru/python-teos.git
synced 2026-01-30 03:34:30 +01:00
10 lines
205 B
Python
10 lines
205 B
Python
from pisa.appointment import Appointment
|
|
|
|
|
|
class Inspector:
|
|
def __init__(self):
|
|
pass
|
|
|
|
def inspect(self, appointment, debug):
|
|
return Appointment(appointment, None, None, None, None)
|