src/eric7/Project/FileCategoryRepositoryItem.py

Sun, 11 Dec 2022 17:33:46 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sun, 11 Dec 2022 17:33:46 +0100
branch
eric7
changeset 9610
b45bccbdf331
parent 9520
e12589f1d408
child 9653
e67609152c5e
permissions
-rw-r--r--

Project
- Added the capability to edit the file type associations from within the project properties dialog.

see issue471

# -*- coding: utf-8 -*-

# Copyright (c) 2022 Detlev Offenbach <detlev@die-offenbachs.de>
#

"""
Module implementing a data structure holding the data associated with a file type
category.
"""

from dataclasses import dataclass


@dataclass
class FileCategoryRepositoryItem:
    """
    Class holding the data associated with a file type category.
    """

    fileCategoryFilterTemplate: str
    fileCategoryUserString: str
    fileCategoryTyeString: str
    fileCategoryExtensions: list

eric ide

mercurial