mirror of
https://github.com/Rhinemann/IoT-Systems.git
synced 2026-03-14 20:50:39 +02:00
fix: file field name
This commit is contained in:
parent
92c20ef612
commit
081a2d4240
@ -14,9 +14,10 @@ class FileReader:
|
|||||||
|
|
||||||
def startReading(self, *args, **kwargs):
|
def startReading(self, *args, **kwargs):
|
||||||
self.file = open(self.file_path, newline='')
|
self.file = open(self.file_path, newline='')
|
||||||
self.file_reader = reader(self.acc_file)
|
self.file_reader = reader(self.file)
|
||||||
file_header = next(self.file_reader)
|
file_header = next(self.file_reader)
|
||||||
|
|
||||||
def stopReading(self, *args, **kwargs):
|
def stopReading(self, *args, **kwargs):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user