Use f-strings
Now that minimum python supported is 3.6, we can use f-strings !
This commit is contained in:
@@ -114,7 +114,7 @@ def build(options: BuildOptions) -> None:
|
||||
if not platform_configs:
|
||||
continue
|
||||
|
||||
container_name = 'cibuildwheel-{}'.format(uuid.uuid4())
|
||||
container_name = f'cibuildwheel-{uuid.uuid4()}'
|
||||
|
||||
try:
|
||||
shell_cmd = ['linux32', '/bin/bash'] if platform_tag.endswith("i686") else ['/bin/bash']
|
||||
|
||||
Reference in New Issue
Block a user