mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
Format with updated black
This commit is contained in:
10
game/sidc.py
10
game/sidc.py
@@ -10,6 +10,7 @@ from the output.
|
||||
https://nso.nato.int/nso/nsdd/main/standards/ap-details/1912/EN
|
||||
https://www.spatialillusions.com/milsymbol/docs/milsymbol-APP6d.html
|
||||
"""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from abc import ABC, abstractmethod
|
||||
@@ -330,18 +331,15 @@ class SymbolIdentificationCode:
|
||||
class SidcDescribable(ABC):
|
||||
@property
|
||||
@abstractmethod
|
||||
def standard_identity(self) -> StandardIdentity:
|
||||
...
|
||||
def standard_identity(self) -> StandardIdentity: ...
|
||||
|
||||
@property
|
||||
@abstractmethod
|
||||
def sidc_status(self) -> Status:
|
||||
...
|
||||
def sidc_status(self) -> Status: ...
|
||||
|
||||
@property
|
||||
@abstractmethod
|
||||
def symbol_set_and_entity(self) -> tuple[SymbolSet, Entity]:
|
||||
...
|
||||
def symbol_set_and_entity(self) -> tuple[SymbolSet, Entity]: ...
|
||||
|
||||
def sidc(self) -> SymbolIdentificationCode:
|
||||
symbol_set, entity = self.symbol_set_and_entity
|
||||
|
||||
Reference in New Issue
Block a user