From 3fb4748f5ef41a74fef6eaead4308434183bdf49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=98yvind=20Evju?= Date: Fri, 14 Feb 2014 23:17:33 +0100 Subject: [PATCH] Removed trailing comma from import list --- fenicstools/WeightedGradient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fenicstools/WeightedGradient.py b/fenicstools/WeightedGradient.py index 4f2e044..6e734fd 100644 --- a/fenicstools/WeightedGradient.py +++ b/fenicstools/WeightedGradient.py @@ -3,7 +3,7 @@ __copyright__ = "Copyright (C) 2013 " + __author__ __license__ = "GNU Lesser GPL version 3 or any later version" import os, inspect -from dolfin import compile_extension_module, Function, FunctionSpace, assemble, TrialFunction, TestFunction, dx, Matrix, +from dolfin import compile_extension_module, Function, FunctionSpace, assemble, TrialFunction, TestFunction, dx, Matrix fem_folder = os.path.abspath(os.path.join(inspect.getfile(inspect.currentframe()), "../fem")) gradient_code = open(os.path.join(fem_folder, 'gradient_weight.cpp'), 'r').read()