Skip to content

Commit

Permalink
Merge branch 'master' into q0
Browse files Browse the repository at this point in the history
  • Loading branch information
kinnala authored Dec 3, 2019
2 parents 0fa5774 + ccc9ab1 commit 4eb2980
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions skfem/mesh/mesh.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import warnings
from typing import Dict, Optional, Tuple,\
Type, TypeVar, Union,\
Callable, Any
Callable

import numpy as np
from numpy import ndarray
Expand Down Expand Up @@ -48,9 +48,6 @@ class Mesh():
Named subsets of elements.
boundaries
Named subsets of boundary facets.
external
If Mesh is loaded from external format (object), the original
representation is kept here.
"""

Expand All @@ -64,7 +61,6 @@ class Mesh():

subdomains: Optional[Dict[str, ndarray]] = None
boundaries: Optional[Dict[str, ndarray]] = None
external: Any = None

def __init__(self):
"""Check that p and t are C_CONTIGUOUS as this leads
Expand Down

0 comments on commit 4eb2980

Please sign in to comment.