mirror of
https://github.com/dcs-liberation/dcs_liberation.git
synced 2025-11-10 14:22:26 +00:00
Blacken.
This commit is contained in:
@@ -94,12 +94,16 @@ class QIntelBox(QGroupBox):
|
||||
|
||||
data = self.game.game_stats.data_per_turn[-1]
|
||||
|
||||
self.air_strength.setText(self.forces_strength_text(
|
||||
data.allied_units.aircraft_count,
|
||||
data.enemy_units.aircraft_count))
|
||||
self.ground_strength.setText(self.forces_strength_text(
|
||||
data.allied_units.vehicles_count,
|
||||
data.enemy_units.vehicles_count))
|
||||
self.air_strength.setText(
|
||||
self.forces_strength_text(
|
||||
data.allied_units.aircraft_count, data.enemy_units.aircraft_count
|
||||
)
|
||||
)
|
||||
self.ground_strength.setText(
|
||||
self.forces_strength_text(
|
||||
data.allied_units.vehicles_count, data.enemy_units.vehicles_count
|
||||
)
|
||||
)
|
||||
self.economic_strength.setText(self.economic_strength_text())
|
||||
|
||||
def open_details_window(self) -> None:
|
||||
|
||||
Reference in New Issue
Block a user