Skip to content
Snippets Groups Projects
Verified Commit f92e983f authored by Marcus Mohr's avatar Marcus Mohr
Browse files

Fixes return type to FunctionSpaceImpl

parent af06c505
1 merge request!37Split function_space_impls.py into smaller files
Pipeline #70738 failed with stages
in 3 minutes and 56 seconds
......@@ -23,6 +23,10 @@ from hog.function_space import (
N1E1Space,
)
from hog.operator_generation.function_space_implementations.function_space_impl_base import (
FunctionSpaceImpl,
)
from hog.operator_generation.function_space_implementations.p0_space_impl import (
P0FunctionSpaceImpl,
)
......@@ -46,7 +50,7 @@ def create_impl(
name: str,
type_descriptor: HOGType,
is_pointer: bool = False,
) -> type:
) -> FunctionSpaceImpl:
"""Takes a mathematical function space and produces the corresponding function space implementation.
:param func_space: The mathematical function space.
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment