1
0
mirror of https://github.com/Rhinemann/IoT-Systems.git synced 2026-03-14 20:50:39 +02:00

feat: add empty methods to class

This commit is contained in:
ІМ-24 Владислав Коваленко 2026-03-03 13:46:26 +00:00
parent 87df394352
commit c31363aa57

17
MapView/fileReader.py Normal file
View File

@ -0,0 +1,17 @@
from csv import reader
import config
class FileReader:
def __init__(
self, data_filename: str,
) -> None:
pass
def read(self):
return [1, 2, 3]
def startReading(self, *args, **kwargs):
def stopReading(self, *args, **kwargs):