thsf.net/build/lib/thsf/navbar/__init__.py

7 lines
177 B
Python
Raw Normal View History

2023-04-09 04:38:07 +02:00
class Navbar:
def __init__(self, config):
self.config = config
def get_from_page(self, page):
return [item for item in self.config["items"] if item["url"] != page]