src/eric7/CodeFormatting/BlackFormattingAction.py

Tue, 27 Sep 2022 14:58:59 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Tue, 27 Sep 2022 14:58:59 +0200
branch
eric7
changeset 9360
8b46571d9cc9
parent 9221
bf71ee032bb4
child 9453
e5065dde905d
permissions
-rw-r--r--

Forgot to make the progress bar of the formatting dialog visible again.

# -*- 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