initial commit
[emels.git] / emels / utils.py
1 # -*- coding: utf-8 -*-
2 from settings.apps import INSTALLED_APPS
3
4
5 def process_app_deps(list_with_deps):
6     return tuple(
7         (x[0] if type(x) == tuple else x)
8         for x in list_with_deps
9         if type(x) != tuple or x[1] in INSTALLED_APPS)