8 lines
270 B
Python
8 lines
270 B
Python
from __future__ import absolute_import
|
|
|
|
from icons.literals import FILE_EXTENSION_ERROR, FILE_EXTENSION_UNKNOWN
|
|
from icons import Icon
|
|
|
|
icon_file_extension_error = Icon(FILE_EXTENSION_ERROR, 'custom')
|
|
icon_file_extension_unknown = Icon(FILE_EXTENSION_UNKNOWN, 'custom')
|