Fixed a test

This commit is contained in:
Philipp Horstenkamp 2024-01-15 22:30:21 +01:00
parent 7c943b3997
commit 5c5b33153a
Signed by: Philipp
GPG Key ID: DD53EAC36AFB61B4

View File

@ -103,10 +103,6 @@ def get_all_company_relations() -> pd.DataFrame:
return company_relations return company_relations
@cached( # type: ignore
cache=TTLCache(maxsize=100, ttl=int(os.getenv("PYTHON_CACHE_TTL", "3600"))),
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.