Skip to content

Commit 4aa397d

Browse files
Remove the unused unicode
Change-Id: I4a9469833dd2e3fa878211d314a24b01b09cc616
1 parent bbd8a50 commit 4aa397d

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

cloudkittydashboard/tests/test_predictive_pricing.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ def test_quote_request_wrong_method(self):
5353
@mock.patch('cloudkittydashboard.dashboards.project.rating.views.api')
5454
def test_quote_does_update_request_dict(self, api_mock):
5555
body = [{'service': 'nope'}, {'other_key': None}]
56-
expected_body = [{u'service': 'test_service'},
57-
{u'other_key': None, 'service': 'test_service'}]
56+
expected_body = [{'service': 'test_service'},
57+
{'other_key': None, 'service': 'test_service'}]
5858

5959
request = mock.MagicMock()
6060
request.is_ajax.return_value = True

doc/source/conf.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@
4949
master_doc = 'index'
5050

5151
# General information about the project.
52-
project = u'cloudkitty-dashboard'
53-
copyright = u'2014, Objectif Libre'
52+
project = 'cloudkitty-dashboard'
53+
copyright = '2014, Objectif Libre'
5454

5555
# The language for content autogenerated by Sphinx. Refer to documentation
5656
# for a list of supported languages.
@@ -195,8 +195,8 @@
195195
(
196196
'index',
197197
'doc-%s.tex' % project,
198-
u'Cloudkitty-Dashboard Documentation',
199-
u'OpenStack Foundation', 'howto', True
198+
'Cloudkitty-Dashboard Documentation',
199+
'OpenStack Foundation', 'howto', True
200200
),
201201
]
202202

@@ -229,8 +229,8 @@
229229
(
230230
'index',
231231
project,
232-
u'%s Documentation' % project,
233-
[u'Objectif Libre'],
232+
'%s Documentation' % project,
233+
['Objectif Libre'],
234234
1
235235
),
236236
]
@@ -248,8 +248,8 @@
248248
(
249249
'index',
250250
project,
251-
u'%s Documentation' % project,
252-
u'Objectif Libre',
251+
'%s Documentation' % project,
252+
'Objectif Libre',
253253
project,
254254
'CloudKitty Horizon Plugin',
255255
'Miscellaneous'

releasenotes/source/conf.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@
4242
master_doc = 'index'
4343

4444
# General information about the project.
45-
project = u'Cloudkitty Dashboard Release Notes'
46-
copyright = u'2016, Cloudkitty developers'
45+
project = 'Cloudkitty Dashboard Release Notes'
46+
copyright = '2016, Cloudkitty developers'
4747

4848
# Release notes are version independent
4949
# The short X.Y version.
@@ -188,8 +188,8 @@
188188
# (source start file, target name, title,
189189
# author, documentclass [howto, manual, or own class]).
190190
latex_documents = [
191-
('index', 'PythonCloudkitty.tex', u'Cloudkitty Release Notes Documentation',
192-
u'Cloudkitty developers', 'manual'),
191+
('index', 'PythonCloudkitty.tex', 'Cloudkitty Release Notes Documentation',
192+
'Cloudkitty developers', 'manual'),
193193
]
194194

195195
# The name of an image file (relative to this directory) to place at the top of
@@ -219,8 +219,8 @@
219219
# (source start file, name, description, authors, manual section).
220220
man_pages = [
221221
('index', 'cloudkittydashboard',
222-
u'Cloudkitty Dashboard Release Notes Documentation',
223-
[u'Cloudkitty developers'], 1)
222+
'Cloudkitty Dashboard Release Notes Documentation',
223+
['Cloudkitty developers'], 1)
224224
]
225225

226226
# If true, show URL addresses after external links.
@@ -234,8 +234,8 @@
234234
# dir menu entry, description, category)
235235
texinfo_documents = [
236236
('index', 'CloudkittyDashboard',
237-
u'Cloudkitty Dashboard Release Notes Documentation',
238-
u'Cloudkitty Dashboard developers', 'CloudkittyDashboard',
237+
'Cloudkitty Dashboard Release Notes Documentation',
238+
'Cloudkitty Dashboard developers', 'CloudkittyDashboard',
239239
'One line description of project.', 'Miscellaneous'),
240240
]
241241

0 commit comments

Comments
 (0)