diff options
author | xengineering <me@xengineering.eu> | 2022-09-23 20:12:49 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2022-09-23 20:12:49 +0200 |
commit | bcf66203d0e2a027561bf89102a7b72b66e9d4c7 (patch) | |
tree | 50ec1dc08e10125e07d973f9629f6a7725a300cf | |
parent | 4a439a96abb04537152c99d170e84e79ae941ef1 (diff) | |
download | xbackup-bcf66203d0e2a027561bf89102a7b72b66e9d4c7.tar xbackup-bcf66203d0e2a027561bf89102a7b72b66e9d4c7.tar.zst xbackup-bcf66203d0e2a027561bf89102a7b72b66e9d4c7.zip |
Remove Vim modelines
-rw-r--r-- | Makefile | 1 | ||||
-rwxr-xr-x | main.py | 1 | ||||
-rw-r--r-- | setup.py | 1 | ||||
-rw-r--r-- | xbackup/backup.py | 1 | ||||
-rw-r--r-- | xbackup/config.py | 1 | ||||
-rw-r--r-- | xbackup/prune.py | 1 | ||||
-rw-r--r-- | xbackup/script.py | 1 | ||||
-rw-r--r-- | xbackup/utils.py | 1 |
8 files changed, 0 insertions, 8 deletions
@@ -1,4 +1,3 @@ -# vim: shiftwidth=4 softtabstop=4 tabstop=4 noexpandtab .PHONY: all clean tarball @@ -1,5 +1,4 @@ #!/usr/bin/python3 -# vim: shiftwidth=4 tabstop=4 expandtab """Main Executable of xbackup @@ -1,5 +1,4 @@ #!/usr/bin/python3 -# vim: shiftwidth=4 softtabstop=4 tabstop=4 expandtab """setup.py diff --git a/xbackup/backup.py b/xbackup/backup.py index 8378977..59ea6b8 100644 --- a/xbackup/backup.py +++ b/xbackup/backup.py @@ -1,5 +1,4 @@ #!/usr/bin/python3 -# vim: shiftwidth=4 softtabstop=4 tabstop=4 expandtab # pylint: disable=too-few-public-methods diff --git a/xbackup/config.py b/xbackup/config.py index 4c72915..0048ada 100644 --- a/xbackup/config.py +++ b/xbackup/config.py @@ -1,5 +1,4 @@ #!/usr/bin/python3 -# vim: shiftwidth=4 softtabstop=4 tabstop=4 expandtab """Module for Configuration Parsing Functionality of xbackup""" diff --git a/xbackup/prune.py b/xbackup/prune.py index 7e57830..30cc17b 100644 --- a/xbackup/prune.py +++ b/xbackup/prune.py @@ -1,5 +1,4 @@ #!/usr/bin/python3 -# vim: shiftwidth=4 softtabstop=4 tabstop=4 expandtab """prune.py diff --git a/xbackup/script.py b/xbackup/script.py index 9d80603..8040b14 100644 --- a/xbackup/script.py +++ b/xbackup/script.py @@ -1,5 +1,4 @@ #!/usr/bin/python3 -# vim: shiftwidth=4 softtabstop=4 tabstop=4 expandtab """Module for the Script Functionality of xbackup""" diff --git a/xbackup/utils.py b/xbackup/utils.py index e1480d1..a58ec4c 100644 --- a/xbackup/utils.py +++ b/xbackup/utils.py @@ -1,5 +1,4 @@ #!/usr/bin/python3 -# vim: shiftwidth=4 softtabstop=4 tabstop=4 expandtab """utils.py |