4 Commits

Author SHA1 Message Date
Christian 25d1c70a0b Fix incorrect log message in PayPal config loader 2026-06-21 19:15:20 +02:00
David Rodenkirchen 041ddaa334 Add participants page 2026-05-30 09:43:50 +00:00
David Rodenkirchen bbcf18d790 bump version 2026-05-30 09:43:50 +00:00
root 87eb94045c Add Python 3.11 compatibility 2026-05-29 23:17:28 +02:00
4 changed files with 6 additions and 5 deletions
+3 -2
View File
@@ -20,8 +20,9 @@ class SeatPixel(Component):
self.associated_user = await self.seat.user.fetch()
async def on_press(self, _: PointerEvent) -> None:
self.session.navigate_to(f"./seat-info?seat_id={self.seat_id.replace("\n", "")}")
seat_id = self.seat_id.replace("\n", "")
self.session.navigate_to(f"./seat-info?seat_id={seat_id}")
def determine_color(self) -> Color:
if self.seat is not None:
try:
+1 -1
View File
@@ -1,6 +1,6 @@
from __future__ import annotations
from _sha2 import sha256
from hashlib import sha256
from random import choices
from typing import Any, Optional
+1 -1
View File
@@ -26,7 +26,7 @@ class TransactionRow(Component):
return Rectangle(
content=Row(
Text(
f"{self.transaction_time.strftime("%d.%m.%y")} /",
f"{self.transaction_time.strftime('%d.%m.%y')} /",
justify="left",
font_size=0.8,
margin_left=0.5,
+1 -1
View File
@@ -44,7 +44,7 @@ class ConfigurationService:
secret=self._config["paypal"]["secret"]
)
except KeyError:
logger.fatal("Error loading DatabaseConfiguration, exiting...")
logger.fatal("Error loading PayPalConfiguration, exiting...")
sys.exit(1)
def get_ticket_info(self) -> tuple[TicketInfo, ...]: