From 342fee006aee65961a5b87d8bfa421e152e829d6 Mon Sep 17 00:00:00 2001 From: Iwo Herka Date: Fri, 6 Apr 2018 16:53:32 +0200 Subject: [PATCH] Remove Vim directives --- eav/__init__.py | 2 +- eav/admin.py | 1 - eav/fields.py | 1 - eav/forms.py | 1 - eav/managers.py | 5 ++--- eav/models.py | 1 - eav/registry.py | 1 - eav/validators.py | 1 - 8 files changed, 3 insertions(+), 10 deletions(-) diff --git a/eav/__init__.py b/eav/__init__.py index 70e91d0..d41b1cc 100644 --- a/eav/__init__.py +++ b/eav/__init__.py @@ -1,5 +1,4 @@ #!/usr/bin/env python -# vim: ai ts=4 sts=4 et sw=4 coding=utf-8 # # This software is derived from EAV-Django originally written and # copyrighted by Andrey Mikhaylenko @@ -16,6 +15,7 @@ # # You should have received a copy of the GNU Lesser General Public License # along with EAV-Django. If not, see . + VERSION = (0, 9, 2) def get_version(): diff --git a/eav/admin.py b/eav/admin.py index 8a0c1a4..43119cf 100644 --- a/eav/admin.py +++ b/eav/admin.py @@ -1,5 +1,4 @@ #!/usr/bin/env python -# vim: ai ts=4 sts=4 et sw=4 coding=utf-8 # # This software is derived from EAV-Django originally written and # copyrighted by Andrey Mikhaylenko diff --git a/eav/fields.py b/eav/fields.py index 8f7c9c7..ad19aaf 100644 --- a/eav/fields.py +++ b/eav/fields.py @@ -1,5 +1,4 @@ #!/usr/bin/env python -# vim: ai ts=4 sts=4 et sw=4 coding=utf-8 # # This software is derived from EAV-Django originally written and # copyrighted by Andrey Mikhaylenko diff --git a/eav/forms.py b/eav/forms.py index 26e5785..2e19eb9 100644 --- a/eav/forms.py +++ b/eav/forms.py @@ -1,5 +1,4 @@ #!/usr/bin/env python -# vim: ai ts=4 sts=4 et sw=4 coding=utf-8 # # This software is derived from EAV-Django originally written and # copyrighted by Andrey Mikhaylenko diff --git a/eav/managers.py b/eav/managers.py index f6a0a1e..b1eeacf 100644 --- a/eav/managers.py +++ b/eav/managers.py @@ -1,5 +1,4 @@ #!/usr/bin/env python -# vim: ai ts=4 sts=4 et sw=4 coding=utf-8 # # This software is derived from EAV-Django originally written and # copyrighted by Andrey Mikhaylenko @@ -34,9 +33,9 @@ from .models import Attribute, Value def eav_filter(func): ''' - Decorator used to wrap filter and exclude methods. Passes args through + Decorator used to wrap filter and exclude methods. Passes args through expand_q_filters and kwargs through expand_eav_filter. Returns the - called function (filter or exclude) + called function (filter or exclude). ''' @wraps(func) diff --git a/eav/models.py b/eav/models.py index 3cb700b..cd8c2fd 100644 --- a/eav/models.py +++ b/eav/models.py @@ -1,5 +1,4 @@ #!/usr/bin/env python -# vim: ai ts=4 sts=4 et sw=4 coding=utf-8 # # This software is derived from EAV-Django originally written and # copyrighted by Andrey Mikhaylenko diff --git a/eav/registry.py b/eav/registry.py index 2eccefc..5a1af5a 100644 --- a/eav/registry.py +++ b/eav/registry.py @@ -1,5 +1,4 @@ #!/usr/bin/env python -# vim: ai ts=4 sts=4 et sw=4 coding=utf-8 # # This software is derived from EAV-Django originally written and # copyrighted by Andrey Mikhaylenko diff --git a/eav/validators.py b/eav/validators.py index 02ec3e8..790fcc8 100644 --- a/eav/validators.py +++ b/eav/validators.py @@ -1,5 +1,4 @@ #!/usr/bin/env python -# vim: ai ts=4 sts=4 et sw=4 coding=utf-8 # # This software is derived from EAV-Django originally written and # copyrighted by Andrey Mikhaylenko