Skip to content

Commit 26346b4

Browse files
renamed list to state_list
Co-authored-by: Rik <49898887+gemenerik@users.noreply.github.com>
1 parent a07813e commit 26346b4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cflib/crazyflie/supervisor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,8 @@ def read_state_list(self):
177177
Reads the bitfield and returns the list of all active states.
178178
"""
179179
bitfield = self.read_bitfield()
180-
list = self.decode_bitfield(bitfield)
181-
return list
180+
state_list = self.decode_bitfield(bitfield)
181+
return state_list
182182

183183
def decode_bitfield(self, value):
184184
"""

0 commit comments

Comments
 (0)