mirror of
https://github.com/rembo10/headphones.git
synced 2026-03-21 20:29:27 +00:00
11 lines
452 B
Python
11 lines
452 B
Python
# Stub file. Not affiliated with the original 'pkg_resource.py' included in the
|
|
# 'setuptools' package.
|
|
|
|
def iter_entry_points(group, name=None):
|
|
"""
|
|
Stub method to make APScheduler happy. This method is only imported in
|
|
'lib/apscheduler/schedulers/base.py' to autodetect triggers, executors and
|
|
job stores. Headphones does not use this functionality, so it just returns
|
|
an iterator of an empty dict.
|
|
"""
|
|
return iter(dict()) |