src/eric7/CodeFormatting/BlackFormattingAction.py

Wed, 13 Jul 2022 11:16:20 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Wed, 13 Jul 2022 11:16:20 +0200
branch
eric7
changeset 9220
e9e7eca7efee
parent 9214
bd28e56047d7
child 9221
bf71ee032bb4
permissions
-rw-r--r--

Black Formatting Dialog
- added capability to filter the list by

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

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

"""
Module implementing an enum defining the various code formatting actions.
"""

import enum


class BlackFormattingAction(enum.Enum):
    """
    Class defining the various code formatting actions.
    """
    Format = 0
    Check = 1
    Diff = 2

eric ide

mercurial