about summary refs log tree commit diff
path: root/pkgs/development/python-modules/untangle
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2020-08-25 12:07:09 +1000
committerJon <jonringer@users.noreply.github.com>2020-08-27 12:51:02 -0700
commit0cff30bb44063c627dd033ccca8155ace853d4d9 (patch)
treea2a0a766e49151f56f37e6e56ab1a7cb4dd29222 /pkgs/development/python-modules/untangle
parent1c2ebdc5a3415a534371e69468d7ec1a00c45be8 (diff)
python: editorconfig fixes
Diffstat (limited to 'pkgs/development/python-modules/untangle')
-rw-r--r--pkgs/development/python-modules/untangle/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/untangle/default.nix b/pkgs/development/python-modules/untangle/default.nix
index 9b8e915a8ba7b..820c96c38c90e 100644
--- a/pkgs/development/python-modules/untangle/default.nix
+++ b/pkgs/development/python-modules/untangle/default.nix
@@ -3,7 +3,7 @@
 buildPythonPackage rec {
   pname = "untangle";
   version = "1.1.1";
-  
+
   src = fetchFromGitHub {
     owner = "stchris";
     repo = "untangle";
@@ -11,11 +11,11 @@ buildPythonPackage rec {
     rev = "61b57cd771a40df7d1621e9ec3c68d9acd733d31";
     sha256 = "0ffvlfyyl82xi4akz1lls32lrnlrn44ik41v8x8xh9ghy0n0ick7";
   };
-  
+
   checkPhase = ''
     ${python.interpreter} -m unittest discover -s tests
   '';
-  
+
   meta = with lib; {
     description = "Convert XML documents into Python objects";
     homepage = "https://github.com/stchris/untangle";