Change some formats to f-strings

As pylint recommends.
This commit is contained in:
fosslinux 2021-09-20 14:31:10 +10:00
parent 8857f53cd1
commit a8a9056f1d
3 changed files with 7 additions and 7 deletions

View file

@ -33,7 +33,7 @@ class SysGeneral:
def __del__(self):
if not self.preserve_tmp:
print("Unmounting tmpfs from %s" % (self.tmp_dir))
print(f"Unmounting tmpfs from {self.tmp_dir}")
umount(self.tmp_dir)
os.rmdir(self.tmp_dir)
@ -41,7 +41,7 @@ class SysGeneral:
"""Mount the tmpfs for this sysx"""
if not os.path.isdir(self.tmp_dir):
os.mkdir(self.tmp_dir)
print("Mounting tmpfs on %s" % (self.tmp_dir))
print(f"Mounting tmpfs on {self.tmp_dir}")
mount('tmpfs', self.tmp_dir, 'tmpfs', 'size=8G')
def check_file(self, file_name):
@ -80,7 +80,7 @@ class SysGeneral:
# Actually download the file
if not os.path.isfile(abs_file_name):
print("Downloading: %s" % (file_name))
print(f"Downloading: {file_name}")
request = requests.get(url, allow_redirects=True)
# pylint: disable=consider-using-with
open(abs_file_name, 'wb').write(request.content)