Files
cloudkitty-dashboard/cloudkittydashboard/utils.py
Ivan Anfimov 76884efeed Remove unicode prefix from code
All strings are considered as unicode string from Python 3.

This patch drops the explicit unicode literal (u'...')
appearances from the unicode strings.

Change-Id: I6d58ff205118ba60c94f88625d82f976079a6020
2025-05-25 23:30:33 +00:00

36 lines
1.1 KiB
Python

# Copyright 2018 Objectif Libre
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
class TemplatizableDict(dict):
"""Class allowing to pass a dict to horizon templates"""
def __getattr__(self, key):
if key in self.keys():
return self[key]
raise AttributeError("Object has no {} attribute".format(key))
def __setattr__(self, key, val):
self[key] = val
def formatRate(rate: float, prefix: str, postfix: str) -> str:
rate = str(rate)
if prefix:
rate = prefix + rate
if postfix:
rate = rate + postfix
return rate