sassoftware / python-sasctl

Consider using f-strings PYL-C0209
Performance
Minor
7 months ago2 years old
Formatting a regular string which could be a f-string
824            raise ValueError("Project `%s` could not be found." % str(project))
825
826        projectVersions = cls.get(
827            "/projects/{}/projectVersions".format(project_info.id)828        )
829        versionList = []
830        try:
Formatting a regular string which could be a f-string
821        project_info = cls.get_project(project)
822
823        if project_info is None:
824            raise ValueError("Project `%s` could not be found." % str(project))825
826        projectVersions = cls.get(
827            "/projects/{}/projectVersions".format(project_info.id)
Formatting a regular string which could be a f-string
795            model = cls.get_model(model)
796            id_ = model["id"]
797
798        return cls.get("/models/%s" % id_)799
800    @classmethod
801    def list_project_versions(cls, project):
Formatting a regular string which could be a f-string
764        content = "application/json"
765
766        return cls.put(
767            "/models/%s/typeConversion" % id_,768            headers={"Accept-Item": accept, "Content-Type": content, "If-Match": ETag},
769        )
770
Formatting a regular string which could be a f-string
715                headers={"Accept": "application/json"},
716            )
717            if not response:
718                warn("No score resources found for model '{}'".format(model_obj.name))719            return response
720        except HTTPError as e:
721            if e.code == 406: