From a1cecd21d4821d69a9f3cc2665c372d8aa81fe15 Mon Sep 17 00:00:00 2001 From: "Ivan A. Melnikov" Date: Wed, 19 Mar 2014 00:11:34 +0400 Subject: [PATCH] Remove extraneous vim configuration comments Change-Id: Ib0f065b02e053ca6dd176eb8d6a75cf71e0982d0 --- taskflow/engines/action_engine/retry_action.py | 2 -- taskflow/examples/retry_flow.py | 2 -- taskflow/jobs/backends/__init__.py | 2 -- taskflow/jobs/backends/impl_zookeeper.py | 2 -- .../alembic/versions/14b227d79a87_add_intention_column.py | 2 -- .../alembic/versions/84d6e888850_add_task_detail_type.py | 2 -- taskflow/retry.py | 2 -- taskflow/tests/unit/jobs/__init__.py | 2 -- taskflow/tests/unit/jobs/test_zk_job.py | 2 -- taskflow/tests/unit/test_retries.py | 2 -- 10 files changed, 20 deletions(-) diff --git a/taskflow/engines/action_engine/retry_action.py b/taskflow/engines/action_engine/retry_action.py index 61b53de2..7b1d4fb1 100644 --- a/taskflow/engines/action_engine/retry_action.py +++ b/taskflow/engines/action_engine/retry_action.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012-2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/examples/retry_flow.py b/taskflow/examples/retry_flow.py index f632dc58..c1cb1a2d 100644 --- a/taskflow/examples/retry_flow.py +++ b/taskflow/examples/retry_flow.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012-2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/jobs/backends/__init__.py b/taskflow/jobs/backends/__init__.py index 408f9de3..da9e7d90 100644 --- a/taskflow/jobs/backends/__init__.py +++ b/taskflow/jobs/backends/__init__.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/jobs/backends/impl_zookeeper.py b/taskflow/jobs/backends/impl_zookeeper.py index 75e4dc52..0ffc6558 100644 --- a/taskflow/jobs/backends/impl_zookeeper.py +++ b/taskflow/jobs/backends/impl_zookeeper.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/persistence/backends/sqlalchemy/alembic/versions/14b227d79a87_add_intention_column.py b/taskflow/persistence/backends/sqlalchemy/alembic/versions/14b227d79a87_add_intention_column.py index d8311933..b7bfe8d8 100644 --- a/taskflow/persistence/backends/sqlalchemy/alembic/versions/14b227d79a87_add_intention_column.py +++ b/taskflow/persistence/backends/sqlalchemy/alembic/versions/14b227d79a87_add_intention_column.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012-2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/persistence/backends/sqlalchemy/alembic/versions/84d6e888850_add_task_detail_type.py b/taskflow/persistence/backends/sqlalchemy/alembic/versions/84d6e888850_add_task_detail_type.py index a2753301..1e47583b 100644 --- a/taskflow/persistence/backends/sqlalchemy/alembic/versions/84d6e888850_add_task_detail_type.py +++ b/taskflow/persistence/backends/sqlalchemy/alembic/versions/84d6e888850_add_task_detail_type.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012-2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/retry.py b/taskflow/retry.py index 5281a308..bb79c7f4 100644 --- a/taskflow/retry.py +++ b/taskflow/retry.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Rackspace Hosting Inc. All Rights Reserved. # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # diff --git a/taskflow/tests/unit/jobs/__init__.py b/taskflow/tests/unit/jobs/__init__.py index 408f9de3..da9e7d90 100644 --- a/taskflow/tests/unit/jobs/__init__.py +++ b/taskflow/tests/unit/jobs/__init__.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/tests/unit/jobs/test_zk_job.py b/taskflow/tests/unit/jobs/test_zk_job.py index 03cb641e..ac068d18 100644 --- a/taskflow/tests/unit/jobs/test_zk_job.py +++ b/taskflow/tests/unit/jobs/test_zk_job.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2013 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/taskflow/tests/unit/test_retries.py b/taskflow/tests/unit/test_retries.py index 39308362..5d475029 100644 --- a/taskflow/tests/unit/test_retries.py +++ b/taskflow/tests/unit/test_retries.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -# vim: tabstop=4 shiftwidth=4 softtabstop=4 - # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may