Skip to content

Commit

Permalink
Adapt Element coupling strings
Browse files Browse the repository at this point in the history
  • Loading branch information
isteinbrecher committed Dec 16, 2024
1 parent 7f6c75a commit 669b32e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions meshpy/element_beam.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"""This module implements beam elements for the mesh."""

import warnings
from typing import Any
from typing import Any, Optional

import numpy as np
import vtk
Expand Down Expand Up @@ -62,8 +62,8 @@ class Beam(Element):
valid_material: Any = []

# Coupling strings.
coupling_fix_string = ""
coupling_joint_string = ""
coupling_fix_string: Optional[str] = None
coupling_joint_string: Optional[str] = None

def __init__(self, material=None, nodes=None):
super().__init__(nodes=nodes, material=material)
Expand Down

0 comments on commit 669b32e

Please sign in to comment.