reviewed code structure, cleaned comments, now pep8 conform
All checks were successful
Build and push docker image / Build (pull_request) Successful in 2m17s
Build and release APK / Build APK (pull_request) Successful in 6m53s
Build web / Build Web (pull_request) Successful in 1m31s

This commit is contained in:
2024-06-11 20:14:12 +02:00
parent af4d68f36f
commit 111e6836f6
10 changed files with 423 additions and 500 deletions

View File

@@ -1,13 +1,9 @@
from typing import Optional
from pydantic import BaseModel
from OSMPythonTools.api import Api
from .landmarktype import LandmarkType
from .preferences import Preferences
class LandmarkTest(BaseModel) :
name : str
attractiveness : int
loc : tuple
from .landmarktype import LandmarkType
# Output to frontend
class Landmark(BaseModel) :