Skip to content
Snippets Groups Projects

More code improvements

Merged wkwk requested to merge wkwk/lr2mods:more_code_fixes into develop
2 files
+ 2
2
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -48,7 +48,7 @@ def all_jobs(excluded_jobs = None) -> list[Job]:
return [x for x in list_of_jobs if x not in excluded_jobs]
def all_hubs() -> list[MapHub]:
return [x for x in list_of_hubs]
return list(list_of_hubs)
@ttl_cache(ttl=1)
def unique_characters_not_known() -> list[Person]: # TODO The check should be standardized, but some people are vanilla, some are different modders or different 'style'.
Loading