Use pyupgrade with --py36-plus param.

This commit is contained in:
grossmj
2021-04-13 18:37:58 +09:30
parent a9eb035b7d
commit f928738bd5
235 changed files with 1501 additions and 1638 deletions

View File

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
#
# Copyright (C) 2015 GNS3 Technologies Inc.
#
@ -38,5 +37,5 @@ class ImageMissingError(Exception):
"""
def __init__(self, image):
super().__init__("The image {} is missing".format(image))
super().__init__(f"The image '{image}' is missing")
self.image = image