formatting

This commit is contained in:
Raffson 2023-03-05 21:41:00 +01:00
parent 648fad33d8
commit 5b19e0fdcd
No known key found for this signature in database
GPG Key ID: B0402B2C9B764D99
3 changed files with 4 additions and 3 deletions

View File

@ -52,7 +52,7 @@ class SeadIngressBuilder(PydcsWaypointBuilder):
weapon_type=DcsWeaponType.Decoy,
group_attack=True,
expend=Expend.All,
altitude=waypoint.alt
altitude=waypoint.alt,
)
waypoint.tasks.append(attack_task)

View File

@ -58,7 +58,7 @@ class PluginSettings:
class LuaPluginOption(PluginSettings):
def __init__(
self, identifier: str, name: str, min: Any, max: Any, value: Any
self, identifier: str, name: str, min: Any, max: Any, value: Any
) -> None:
super().__init__(identifier, value)
self.name = name

View File

@ -18,7 +18,8 @@ from PySide2.QtWidgets import (
QSpinBox,
QStackedLayout,
QVBoxLayout,
QWidget, QSizePolicy,
QWidget,
QSizePolicy,
)
import qt_ui.uiconstants as CONST