Module textwalker.utils

Misc utilities

Expand source code
"""
Misc utilities
"""
from typing import List


def arr2str(arr: List) -> str:
    """ """
    return "".join(arr) if len(arr) > 0 else ""

Functions

def arr2str(arr: List) ‑> str
Expand source code
def arr2str(arr: List) -> str:
    """ """
    return "".join(arr) if len(arr) > 0 else ""