Skip to content

Commit

Permalink
Update SPDX
Browse files Browse the repository at this point in the history
  • Loading branch information
wojtryb committed Feb 14, 2024
1 parent 2c99f2f commit 51c5fba
Show file tree
Hide file tree
Showing 155 changed files with 241 additions and 150 deletions.
2 changes: 1 addition & 1 deletion shortcut_composer/INFO.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

__version__ = "1.5.0.dev"
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

"""
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/actions.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

"""
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/api_krita/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

"""
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/api_krita/actions/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from .transform_actions import TransformModeActions, TransformModeFinder
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/api_krita/actions/transform_actions.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from typing import Dict, Optional
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/api_krita/core_api.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from krita import Krita as Api, Extension, qApp
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/api_krita/enums/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

"""Enumerated values used in krita api wrappers."""
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/api_krita/enums/blending_mode.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from .helpers import EnumGroup, Group
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/api_krita/enums/helpers/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

"""Components used in Enum definitions."""
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/api_krita/enums/helpers/enum_group.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

import sys
Expand Down
72 changes: 72 additions & 0 deletions shortcut_composer/api_krita/enums/helpers/test_enum_error.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@

from enum_group import EnumGroup, Group


class Tool(EnumGroup):

_vectors = Group("Vectors")
SHAPE_SELECT = "InteractionTool"
TEXT = "SvgTextTool"
EDIT_SHAPES = "PathTool"
CALLIGRAPHY = "KarbonCalligraphyTool"

_painting = Group("Painting")
FREEHAND_BRUSH = "KritaShape/KisToolBrush"
LINE = "KritaShape/KisToolLine"
RECTANGLE = "KritaShape/KisToolRectangle"
ELLIPSE = "KritaShape/KisToolEllipse"
POLYGON = "KisToolPolygon"
POLYLINE = "KisToolPolyline"
BEZIER_PATH = "KisToolPath"
FREEHAND_PATH = "KisToolPencil"
DYNAMIC_BRUSH = "KritaShape/KisToolDyna"
MULTI_BRUSH = "KritaShape/KisToolMultiBrush"

_editing = Group("Editing")
TRANSFORM = "KisToolTransform"
MOVE = "KritaTransform/KisToolMove"
CROP = "KisToolCrop"
GRADIENT = "KritaFill/KisToolGradient"
COLOR_SAMPLER = "KritaSelected/KisToolColorSampler"
COLORIZE_MASK = "KritaShape/KisToolLazyBrush"
SMART_PATCH = "KritaShape/KisToolSmartPatch"
FILL = "KritaFill/KisToolFill"
ENCLOSE_AND_FILL = "KisToolEncloseAndFill"

_utility = Group("Utility")
ASSISTANTS = "KisAssistantTool"
MEASUREMENT = "KritaShape/KisToolMeasure"
REFERENCE = "ToolReferenceImages"

_selection = Group("Selection")
RECTANGULAR_SELECTION = "KisToolSelectRectangular"
ELIPTICAL_SELECTION = "KisToolSelectElliptical"
POLYGONAL_SELECTION = "KisToolSelectPolygonal"
FREEHAND_SELECTION = "KisToolSelectOutline"
CONTIGUOUS_SELECTION = "KisToolSelectContiguous"
SIMILAR_COLOR_SELECTION = "KisToolSelectSimilar"
BEZIER_SELECTION = "KisToolSelectPath"
MAGNETIC_SELECTION = "KisToolSelectMagnetic"

_canvas_navigation = Group("Canvas navigation")
ZOOM = "ZoomTool"
PAN = "PanTool"

@property
def pretty_name(self) -> str:
"""Format tool name as in Krita Blending Mode combobox."""
if self in PRETTY_NAMES:
return PRETTY_NAMES[self]
return f"{self.name.replace('_', ' ').title()} Tool"


PRETTY_NAMES = {
Tool.SHAPE_SELECT: "Select Shapes Tool",
Tool.CALLIGRAPHY: "Calligraphy",
Tool.COLOR_SAMPLER: "Color Sampler",
Tool.ENCLOSE_AND_FILL: "Enclose and Fill Tool",
Tool.ASSISTANTS: "Assistant Tool",
Tool.REFERENCE: "Reference Images Tool",
}

print(Tool("KritaSelected/KisToolColorSampler"))
2 changes: 1 addition & 1 deletion shortcut_composer/api_krita/enums/node_types.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from krita import Krita as Api
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/api_krita/enums/toggle.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from krita import Krita as Api
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/api_krita/enums/tool.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from krita import Krita as Api
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/api_krita/enums/transform_mode.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from krita import Krita as Api
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/api_krita/pyqt/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

"""Wrappers and utilities based on PyQt5 objects."""
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/api_krita/pyqt/custom_widgets.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from PyQt5.QtWidgets import QWidget
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/api_krita/pyqt/painter.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

import math
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/api_krita/pyqt/pixmap_transform.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from PyQt5.QtCore import Qt
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/api_krita/pyqt/round_button.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from typing import Optional, Callable
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/api_krita/pyqt/safe_confirm_button.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from typing import Optional
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/api_krita/pyqt/timer.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from typing import Callable
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/api_krita/wrappers/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

"""
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/api_krita/wrappers/canvas.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from dataclasses import dataclass
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/api_krita/wrappers/cursor.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from dataclasses import dataclass
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/api_krita/wrappers/database.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from krita import Krita as Api
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/api_krita/wrappers/document.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from dataclasses import dataclass
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/api_krita/wrappers/node.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from dataclasses import dataclass
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/api_krita/wrappers/tool_descriptor.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from krita import Krita as Api
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/api_krita/wrappers/view.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from krita import Krita as Api
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/composer_utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

"""Utilities specific for this plugin. Not directly reusable elsewhere."""
Expand Down
3 changes: 3 additions & 0 deletions shortcut_composer/composer_utils/animation_progress.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from .global_config import Config


Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/composer_utils/buttons_layout.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from typing import Callable
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/composer_utils/global_config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from config_system import FieldGroup
Expand Down
3 changes: 3 additions & 0 deletions shortcut_composer/composer_utils/label/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from .label_text import LabelText
from .label_widget import LabelWidget
from .label_interface import LabelInterface
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from .scroll_area import ScrollArea
from .numeric_value_picker import NumericValuePicker

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from PyQt5.QtCore import Qt
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

import re
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from .offset_grid_layout import OffsetGridLayout

__all__ = ["OffsetGridLayout"]
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from typing import List, NamedTuple
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/composer_utils/label/label_interface.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from typing import Union, Generic, TypeVar, Protocol
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/composer_utils/label/label_text.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from dataclasses import dataclass, field
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from collections import defaultdict
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/composer_utils/label/label_widget.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from typing import Protocol, TypeVar, Generic
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

"""Implementation of different LabelWidget types."""
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from typing import Type, TypeVar
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from PyQt5.QtGui import QPixmap, QIcon
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from typing import TypeVar
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from typing import TypeVar
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from typing import Callable
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/composer_utils/settings_dialog.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

from PyQt5.QtWidgets import QVBoxLayout, QDialog
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/config_system/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

"""
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/config_system/common_utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-FileCopyrightText: © 2022-2024 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

"""Components used by the core of the config system."""
Expand Down
Loading

0 comments on commit 51c5fba

Please sign in to comment.