Skip to content

Commit f0659b8

Browse files
committed
fix new lint warnings
1 parent 1858c61 commit f0659b8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/compas_fab/robots/robot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1471,4 +1471,4 @@ def info(self):
14711471
joint.limit.upper, joint.limit.lower)
14721472
print(info)
14731473
print("The robot's links are:")
1474-
print([l.name for l in self.model.links])
1474+
print([link.name for link in self.model.links])

src/compas_fab/utilities/file_io.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ def read_csv_to_dictionary(csvfile, delimiter=';'):
3434
infile.close()
3535
data = zip(*data) # transpose data
3636
data_dict = {}
37-
for l in data:
38-
key = l[0]
39-
values = list(l[1:])
37+
for col in data:
38+
key = col[0]
39+
values = list(col[1:])
4040
data_dict.update({key: values})
4141
return data_dict
4242

0 commit comments

Comments
 (0)