Remove the unused unicode

Change-Id: I4a9469833dd2e3fa878211d314a24b01b09cc616
This commit is contained in:
Rafael Weingärtner
2022-02-25 13:03:18 -03:00
parent bbd8a501f4
commit 4aa397d2d0
3 changed files with 18 additions and 18 deletions

View File

@ -53,8 +53,8 @@ class PredictivePricingTest(base.TestCase):
@mock.patch('cloudkittydashboard.dashboards.project.rating.views.api')
def test_quote_does_update_request_dict(self, api_mock):
body = [{'service': 'nope'}, {'other_key': None}]
expected_body = [{u'service': 'test_service'},
{u'other_key': None, 'service': 'test_service'}]
expected_body = [{'service': 'test_service'},
{'other_key': None, 'service': 'test_service'}]
request = mock.MagicMock()
request.is_ajax.return_value = True

View File

@ -49,8 +49,8 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
project = u'cloudkitty-dashboard'
copyright = u'2014, Objectif Libre'
project = 'cloudkitty-dashboard'
copyright = '2014, Objectif Libre'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
@ -195,8 +195,8 @@ latex_documents = [
(
'index',
'doc-%s.tex' % project,
u'Cloudkitty-Dashboard Documentation',
u'OpenStack Foundation', 'howto', True
'Cloudkitty-Dashboard Documentation',
'OpenStack Foundation', 'howto', True
),
]
@ -229,8 +229,8 @@ man_pages = [
(
'index',
project,
u'%s Documentation' % project,
[u'Objectif Libre'],
'%s Documentation' % project,
['Objectif Libre'],
1
),
]
@ -248,8 +248,8 @@ texinfo_documents = [
(
'index',
project,
u'%s Documentation' % project,
u'Objectif Libre',
'%s Documentation' % project,
'Objectif Libre',
project,
'CloudKitty Horizon Plugin',
'Miscellaneous'

View File

@ -42,8 +42,8 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
project = u'Cloudkitty Dashboard Release Notes'
copyright = u'2016, Cloudkitty developers'
project = 'Cloudkitty Dashboard Release Notes'
copyright = '2016, Cloudkitty developers'
# Release notes are version independent
# The short X.Y version.
@ -188,8 +188,8 @@ latex_elements = {
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
('index', 'PythonCloudkitty.tex', u'Cloudkitty Release Notes Documentation',
u'Cloudkitty developers', 'manual'),
('index', 'PythonCloudkitty.tex', 'Cloudkitty Release Notes Documentation',
'Cloudkitty developers', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
@ -219,8 +219,8 @@ latex_documents = [
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'cloudkittydashboard',
u'Cloudkitty Dashboard Release Notes Documentation',
[u'Cloudkitty developers'], 1)
'Cloudkitty Dashboard Release Notes Documentation',
['Cloudkitty developers'], 1)
]
# If true, show URL addresses after external links.
@ -234,8 +234,8 @@ man_pages = [
# dir menu entry, description, category)
texinfo_documents = [
('index', 'CloudkittyDashboard',
u'Cloudkitty Dashboard Release Notes Documentation',
u'Cloudkitty Dashboard developers', 'CloudkittyDashboard',
'Cloudkitty Dashboard Release Notes Documentation',
'Cloudkitty Dashboard developers', 'CloudkittyDashboard',
'One line description of project.', 'Miscellaneous'),
]