Skip to content

Commit 2574e13

Browse files
committed
Merge pull request #1 from oyvinev/v1.3.0-mod
Removed trailing comma from import list
2 parents 24af0f4 + 3fb4748 commit 2574e13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fenicstools/WeightedGradient.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
__copyright__ = "Copyright (C) 2013 " + __author__
44
__license__ = "GNU Lesser GPL version 3 or any later version"
55
import os, inspect
6-
from dolfin import compile_extension_module, Function, FunctionSpace, assemble, TrialFunction, TestFunction, dx, Matrix,
6+
from dolfin import compile_extension_module, Function, FunctionSpace, assemble, TrialFunction, TestFunction, dx, Matrix
77

88
fem_folder = os.path.abspath(os.path.join(inspect.getfile(inspect.currentframe()), "../fem"))
99
gradient_code = open(os.path.join(fem_folder, 'gradient_weight.cpp'), 'r').read()

0 commit comments

Comments
 (0)