summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Willhaus <mail@janwillhaus.de>2019-11-02 13:20:19 +0100
committerJan Willhaus <mail@janwillhaus.de>2019-11-02 16:05:15 +0100
commit54ee0beea48644b1d0cc985076fb74db25f8c352 (patch)
treeb07c0fc380aa6f12e9c05a54eb4d79e8b7b7a213
parentc2e1b4c4f8f2f7617a9429518483e1820bdc7e91 (diff)
downloadwarlock-54ee0beea48644b1d0cc985076fb74db25f8c352.tar.gz
Apply EOF fixes enforced by pre-commit hook
-rw-r--r--.coveragerc2
-rw-r--r--.flake82
-rw-r--r--pytest.ini2
-rw-r--r--tests/schemas/country.json2
-rw-r--r--tests/schemas/person.json2
5 files changed, 5 insertions, 5 deletions
diff --git a/.coveragerc b/.coveragerc
index 0b060d5..7959fd8 100644
--- a/.coveragerc
+++ b/.coveragerc
@@ -16,4 +16,4 @@ exclude_lines =
raise NotImplementedError
# Don't complain if non-runnable code isn't run:
- if __name__ == .__main__.: \ No newline at end of file
+ if __name__ == .__main__.:
diff --git a/.flake8 b/.flake8
index 5f07ab2..01a76f2 100644
--- a/.flake8
+++ b/.flake8
@@ -6,4 +6,4 @@ exclude =
__pycache__
locale/
htmlcov/
-max-complexity = 10 \ No newline at end of file
+max-complexity = 10
diff --git a/pytest.ini b/pytest.ini
index a07e947..ef6ffa7 100644
--- a/pytest.ini
+++ b/pytest.ini
@@ -6,4 +6,4 @@ addopts =
--cov-config=.coveragerc
--cov-report html
--cov-report term
- --verbose \ No newline at end of file
+ --verbose
diff --git a/tests/schemas/country.json b/tests/schemas/country.json
index 730eb0d..3b6b06c 100644
--- a/tests/schemas/country.json
+++ b/tests/schemas/country.json
@@ -7,4 +7,4 @@
"overlord": { "$ref": "person.json#" }
},
"additionalProperties": false
-} \ No newline at end of file
+}
diff --git a/tests/schemas/person.json b/tests/schemas/person.json
index e517a53..a1f265b 100644
--- a/tests/schemas/person.json
+++ b/tests/schemas/person.json
@@ -7,4 +7,4 @@
"firstname": { "type": "string" },
"lastname": { "type": "string" }
}
-} \ No newline at end of file
+}