shortened
This commit is contained in:
parent
57e8fe2b8a
commit
1e3780b069
|
@ -254,10 +254,8 @@ class Table:
|
||||||
f.seek(0)
|
f.seek(0)
|
||||||
|
|
||||||
comments = []
|
comments = []
|
||||||
line = f.readline().strip()
|
while (line := f.readline().strip()).startswith('#'):
|
||||||
while line.startswith('#'):
|
|
||||||
comments.append(line.lstrip('#').strip())
|
comments.append(line.lstrip('#').strip())
|
||||||
line = f.readline().strip()
|
|
||||||
labels = line.split()
|
labels = line.split()
|
||||||
|
|
||||||
shapes = {}
|
shapes = {}
|
||||||
|
|
Loading…
Reference in New Issue