From 285beb6f84a9c4729378f79037973ad1adf8e45e Mon Sep 17 00:00:00 2001 From: Rajiv Kumar Date: Tue, 10 Jan 2017 17:47:18 +0530 Subject: [PATCH] Removed unnecessary utf-8 encoding Change-Id: Ic2ac9598e1098a9b75172af0cab1db31bc2cf9e7 --- doc/source/conf.py | 1 - mistral/actions/base.py | 2 -- mistral/actions/std_actions.py | 2 -- mistral/api/access_control.py | 2 -- mistral/api/controllers/root.py | 2 -- mistral/api/hooks/content_type.py | 2 -- mistral/db/sqlalchemy/migration/alembic_migrations/env.py | 2 -- mistral/db/sqlalchemy/model_base.py | 2 -- mistral/db/sqlalchemy/types.py | 2 -- mistral/engine/base.py | 2 -- mistral/services/periodic.py | 2 -- mistral/services/security.py | 2 -- mistral/services/workbooks.py | 2 -- mistral/tests/unit/actions/test_action_manager.py | 2 -- mistral/tests/unit/actions/test_std_echo_action.py | 2 -- mistral/tests/unit/actions/test_std_fail_action.py | 2 -- mistral/tests/unit/actions/test_std_http_action.py | 2 -- mistral/tests/unit/api/base.py | 2 -- mistral/tests/unit/api/test_auth.py | 2 -- mistral/tests/unit/api/v2/test_actions.py | 2 -- mistral/tests/unit/api/v2/test_cron_triggers.py | 2 -- mistral/tests/unit/api/v2/test_keycloak_auth.py | 2 -- mistral/tests/unit/api/v2/test_root.py | 2 -- mistral/tests/unit/test_exception_base.py | 2 -- mistral/tests/unit/workflow/test_states.py | 2 -- mistral/utils/__init__.py | 2 -- mistral/utils/rest_utils.py | 2 -- mistral/utils/ssh_utils.py | 2 -- mistral/version.py | 2 -- releasenotes/source/conf.py | 1 - 30 files changed, 58 deletions(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index 98c21148a..43214dcea 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # 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 diff --git a/mistral/actions/base.py b/mistral/actions/base.py index feca05408..a0d804376 100644 --- a/mistral/actions/base.py +++ b/mistral/actions/base.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- -# # Copyright 2014 - Mirantis, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/mistral/actions/std_actions.py b/mistral/actions/std_actions.py index 5c8da17fd..7be89e6d8 100644 --- a/mistral/actions/std_actions.py +++ b/mistral/actions/std_actions.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- -# # Copyright 2014 - Mirantis, Inc. # Copyright 2014 - StackStorm, Inc. # diff --git a/mistral/api/access_control.py b/mistral/api/access_control.py index 7b668094b..778087049 100644 --- a/mistral/api/access_control.py +++ b/mistral/api/access_control.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- -# # Copyright 2013 - Mirantis, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/mistral/api/controllers/root.py b/mistral/api/controllers/root.py index ed2f9c533..9183b9359 100644 --- a/mistral/api/controllers/root.py +++ b/mistral/api/controllers/root.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- -# # Copyright 2013 - Mirantis, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/mistral/api/hooks/content_type.py b/mistral/api/hooks/content_type.py index 214558b2d..0332fcc4a 100644 --- a/mistral/api/hooks/content_type.py +++ b/mistral/api/hooks/content_type.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- -# # Copyright 2014 - Mirantis, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/mistral/db/sqlalchemy/migration/alembic_migrations/env.py b/mistral/db/sqlalchemy/migration/alembic_migrations/env.py index 2f5ddf085..0a4165d72 100644 --- a/mistral/db/sqlalchemy/migration/alembic_migrations/env.py +++ b/mistral/db/sqlalchemy/migration/alembic_migrations/env.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- -# # 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 diff --git a/mistral/db/sqlalchemy/model_base.py b/mistral/db/sqlalchemy/model_base.py index 7975b027a..c6dee78d7 100644 --- a/mistral/db/sqlalchemy/model_base.py +++ b/mistral/db/sqlalchemy/model_base.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- -# # Copyright 2013 - Mirantis, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/mistral/db/sqlalchemy/types.py b/mistral/db/sqlalchemy/types.py index 04dc50b53..7949d8f0c 100644 --- a/mistral/db/sqlalchemy/types.py +++ b/mistral/db/sqlalchemy/types.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- -# # Copyright 2013 - Mirantis, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/mistral/engine/base.py b/mistral/engine/base.py index 56c7fc812..7a64dda63 100644 --- a/mistral/engine/base.py +++ b/mistral/engine/base.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- -# # Copyright 2014 - Mirantis, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/mistral/services/periodic.py b/mistral/services/periodic.py index 044fbf155..8dc62434a 100644 --- a/mistral/services/periodic.py +++ b/mistral/services/periodic.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- -# # Copyright 2013 - Mirantis, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/mistral/services/security.py b/mistral/services/security.py index 85d7f602e..4e4c53f97 100644 --- a/mistral/services/security.py +++ b/mistral/services/security.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- -# # Copyright 2013 - Mirantis, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/mistral/services/workbooks.py b/mistral/services/workbooks.py index 07f3939c5..848d28df6 100644 --- a/mistral/services/workbooks.py +++ b/mistral/services/workbooks.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- -# # Copyright 2015 - Mirantis, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/mistral/tests/unit/actions/test_action_manager.py b/mistral/tests/unit/actions/test_action_manager.py index 30efa1f01..ff6994376 100644 --- a/mistral/tests/unit/actions/test_action_manager.py +++ b/mistral/tests/unit/actions/test_action_manager.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- -# # Copyright 2014 - Mirantis, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/mistral/tests/unit/actions/test_std_echo_action.py b/mistral/tests/unit/actions/test_std_echo_action.py index b5c728129..3a9a4bb41 100644 --- a/mistral/tests/unit/actions/test_std_echo_action.py +++ b/mistral/tests/unit/actions/test_std_echo_action.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- -# # Copyright 2014 - Mirantis, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/mistral/tests/unit/actions/test_std_fail_action.py b/mistral/tests/unit/actions/test_std_fail_action.py index a7339c9e2..cebb9e752 100644 --- a/mistral/tests/unit/actions/test_std_fail_action.py +++ b/mistral/tests/unit/actions/test_std_fail_action.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- -# # Copyright 2014 - Mirantis, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/mistral/tests/unit/actions/test_std_http_action.py b/mistral/tests/unit/actions/test_std_http_action.py index 5d4c10a68..695569e12 100644 --- a/mistral/tests/unit/actions/test_std_http_action.py +++ b/mistral/tests/unit/actions/test_std_http_action.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- -# # Copyright 2014 - Mirantis, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/mistral/tests/unit/api/base.py b/mistral/tests/unit/api/base.py index e9ba8bc1b..bb4dd0763 100644 --- a/mistral/tests/unit/api/base.py +++ b/mistral/tests/unit/api/base.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- -# # Copyright 2013 - Mirantis, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/mistral/tests/unit/api/test_auth.py b/mistral/tests/unit/api/test_auth.py index 36246d36a..7ae10b63b 100644 --- a/mistral/tests/unit/api/test_auth.py +++ b/mistral/tests/unit/api/test_auth.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- -# # 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 diff --git a/mistral/tests/unit/api/v2/test_actions.py b/mistral/tests/unit/api/v2/test_actions.py index 920d9d2f4..7c5843160 100644 --- a/mistral/tests/unit/api/v2/test_actions.py +++ b/mistral/tests/unit/api/v2/test_actions.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- -# # Copyright 2014 - Mirantis, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/mistral/tests/unit/api/v2/test_cron_triggers.py b/mistral/tests/unit/api/v2/test_cron_triggers.py index 1a1de6724..5285bc6be 100644 --- a/mistral/tests/unit/api/v2/test_cron_triggers.py +++ b/mistral/tests/unit/api/v2/test_cron_triggers.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- -# # Copyright 2014 - Mirantis, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/mistral/tests/unit/api/v2/test_keycloak_auth.py b/mistral/tests/unit/api/v2/test_keycloak_auth.py index 6edbb5f27..bcd6a5378 100644 --- a/mistral/tests/unit/api/v2/test_keycloak_auth.py +++ b/mistral/tests/unit/api/v2/test_keycloak_auth.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- -# # Copyright 2013 - Mirantis, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/mistral/tests/unit/api/v2/test_root.py b/mistral/tests/unit/api/v2/test_root.py index 95640e957..f09807fc2 100644 --- a/mistral/tests/unit/api/v2/test_root.py +++ b/mistral/tests/unit/api/v2/test_root.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- -# # Copyright 2013 - Mirantis, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/mistral/tests/unit/test_exception_base.py b/mistral/tests/unit/test_exception_base.py index 1296b434a..6777b4c03 100644 --- a/mistral/tests/unit/test_exception_base.py +++ b/mistral/tests/unit/test_exception_base.py @@ -1,5 +1,3 @@ -# -*- encoding: utf-8 -*- -# # Copyright 2014 Rackspace Hosting. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/mistral/tests/unit/workflow/test_states.py b/mistral/tests/unit/workflow/test_states.py index d0f7068a3..2e10bd415 100644 --- a/mistral/tests/unit/workflow/test_states.py +++ b/mistral/tests/unit/workflow/test_states.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- -# # Copyright 2013 - Mirantis, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/mistral/utils/__init__.py b/mistral/utils/__init__.py index 2a2039b23..9e78846a3 100644 --- a/mistral/utils/__init__.py +++ b/mistral/utils/__init__.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- -# # Copyright 2013 - Mirantis, Inc. # Copyright 2015 - Huawei Technologies Co. Ltd # Copyright 2016 - Brocade Communications Systems, Inc. diff --git a/mistral/utils/rest_utils.py b/mistral/utils/rest_utils.py index d2f854b4e..031af4124 100644 --- a/mistral/utils/rest_utils.py +++ b/mistral/utils/rest_utils.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- -# # Copyright 2014 - Mirantis, Inc. # Copyright 2016 - Brocade Communications Systems, Inc. # diff --git a/mistral/utils/ssh_utils.py b/mistral/utils/ssh_utils.py index dc5c440a5..2a5d69aa5 100644 --- a/mistral/utils/ssh_utils.py +++ b/mistral/utils/ssh_utils.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- -# # Copyright 2014 - Mirantis, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/mistral/version.py b/mistral/version.py index f3abddf6d..892b7b9ee 100644 --- a/mistral/version.py +++ b/mistral/version.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- -# # Copyright 2013 - Mirantis, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/releasenotes/source/conf.py b/releasenotes/source/conf.py index 095c84406..02a8662c2 100644 --- a/releasenotes/source/conf.py +++ b/releasenotes/source/conf.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # 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