Khoding / khoBlog

Consider using f-strings PYL-C0209
Performance
Minor
5 months ago2 years old
Formatting a regular string which could be a f-string
43    def get_index_view_url(self):
44        """Get the url for the index view"""
45        content_type = ContentType.objects.get_for_model(self.__class__)
46        return reverse("%s:%s_list" % (content_type.app_label, content_type.model))
Formatting a regular string which could be a f-string
29    def get_index_view_url(self):
30        """Get the url for the index view"""
31        content_type = ContentType.objects.get_for_model(self.__class__)
32        return reverse("%s:index" % (content_type.app_label))33
34
35class Choice(auto_prefetch.Model):
Formatting a regular string which could be a f-string
77    as_varname = tokens[3]
78
79    if tokens[4] != "for":
80        raise TemplateSyntaxError("Fifth argument in %r tag must be 'for'" % tokens[0])81
82    content_types = _get_content_types(tokens[0], tokens[5:])
83    return GetLastElementsNode(count, as_varname, content_types)
Formatting a regular string which could be a f-string
72        raise TemplateSyntaxError("Second argument in %r tag must be a integer" % tokens[0])
73
74    if tokens[2] != "as":
75        raise TemplateSyntaxError("Third argument in %r tag must be 'as'" % tokens[0])76
77    as_varname = tokens[3]
78
Formatting a regular string which could be a f-string
69    try:
70        count = int(tokens[1])
71    except ValueError:
72        raise TemplateSyntaxError("Second argument in %r tag must be a integer" % tokens[0])73
74    if tokens[2] != "as":
75        raise TemplateSyntaxError("Third argument in %r tag must be 'as'" % tokens[0])