mirror of
https://github.com/fhswf/aki_prj23_transparenzregister.git
synced 2025-06-21 23:43:55 +02:00
Fixed a test
This commit is contained in:
@ -105,7 +105,7 @@ def get_all_company_relations() -> pd.DataFrame:
|
|||||||
|
|
||||||
@cached( # type: ignore
|
@cached( # type: ignore
|
||||||
cache=TTLCache(maxsize=100, ttl=int(os.getenv("PYTHON_CACHE_TTL", "3600"))),
|
cache=TTLCache(maxsize=100, ttl=int(os.getenv("PYTHON_CACHE_TTL", "3600"))),
|
||||||
key=lambda drop_min_person_links: hash(drop_min_person_links),
|
key=lambda: None,
|
||||||
)
|
)
|
||||||
def get_all_person_relations() -> pd.DataFrame:
|
def get_all_person_relations() -> pd.DataFrame:
|
||||||
"""These method makes a Database Request for all Persons and their relations, modifies the ID Column and returns the Result as an DataFrame.
|
"""These method makes a Database Request for all Persons and their relations, modifies the ID Column and returns the Result as an DataFrame.
|
||||||
|
Reference in New Issue
Block a user