Fixed entry_points

This commit is contained in:
Hemna 2024-04-21 12:33:03 -04:00
parent fa9ff7d77f
commit e9febbbc52
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ def sample_config(ctx):
def _get_selected_entry_points():
import sys
if sys.version_info < (3,10):
if sys.version_info < (3, 10):
all = imp.entry_points()
selected = []
if "oslo.config.opts" in all: