Source code for dash.helpers

__all__ = ('slugify_workspace', 'lists_overlap')

from autoslug.settings import slugify

slugify_workspace = lambda s: slugify(s.lower()).lower()

[docs]def lists_overlap(sub, main): for i in sub: if i in main: return True return False
Read the Docs v: 0.1.4
Versions
latest
0.3.2
0.3
0.2.4
0.1.4
Downloads
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.