Skip to content

Commit a32e1f2

Browse files
committed
Disable line-length warning
1 parent b1d7724 commit a32e1f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

turtlebot4_setup/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ def write_system(self):
233233

234234
# update /boot/firmware/user-data with the new hostname
235235
subprocess.run(shlex.split(f'cp {self.fw_user_data_file} /tmp/user-data'))
236-
subprocess.run(shlex.split(f'sed -i -E "s/^hostname:.+/hostname: {self.get(SystemOptions.HOSTNAME)}/" /tmp/user-data'))
236+
subprocess.run(shlex.split(f'sed -i -E "s/^hostname:.+/hostname: {self.get(SystemOptions.HOSTNAME)}/" /tmp/user-data')) # noqa: E501
237237
subprocess.run(shlex.split(f'sudo mv /tmp/user-data {self.fw_user_data_file}'))
238238

239239
def read_wifi(self):

0 commit comments

Comments
 (0)