BAMWelDX / weldx

Inconsistent return statements PYL-R1710
Style
Minor
1 occurrence in this check
Either all return statements in a function should return an expression, or none of them should.
419
420
421@decorator
422def check_matplotlib_available(func, *args, **kwargs):423    """Emit a warning if matplotlib is not available."""
424
425    def _warn():