Skip to content

Commit 4e5d021

Browse files
authored
fix style
1 parent 24ece82 commit 4e5d021

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

visual_behavior/devices.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,15 @@ def get_rig_id(computer_name):
6262
6363
>>> get_rig_id('W7DTMJ19R2F')
6464
A1
65-
65+
6666
Parameters
6767
----------
6868
in_val : str
6969
computer name
7070
'''
71-
72-
return RIG_NAME.get(computer_name.lower(),'unknown')
71+
72+
return RIG_NAME.get(computer_name.lower(), 'unknown')
73+
7374

7475
def get_computer_name(rig_id):
7576
'''
@@ -83,5 +84,5 @@ def get_computer_name(rig_id):
8384
rig_id : str
8485
rig name
8586
'''
86-
87-
return COMPUTER_NAME.get(rig_id,'unknown')
87+
88+
return COMPUTER_NAME.get(rig_id, 'unknown')

0 commit comments

Comments
 (0)