Skip to content

Commit

Permalink
Removed print in utils
Browse files Browse the repository at this point in the history
this patch removes a leftover debug print in utils.load_entry_points
that was causing sample-config output to be bogus.
  • Loading branch information
hemna committed Mar 13, 2024
1 parent 50e24ab commit f810c02
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions aprsd/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
if sys.version_info.major == 3 and sys.version_info.minor >= 3:
from collections.abc import MutableMapping
else:
from collections import MutableMapping
from collections.abc import MutableMapping


def env(*vars, **kwargs):
Expand Down Expand Up @@ -136,7 +136,6 @@ def parse_delta_str(s):

def load_entry_points(group):
"""Load all extensions registered to the given entry point group"""
print(f"Loading extensions for group {group}")
try:
import importlib_metadata
except ImportError:
Expand Down

0 comments on commit f810c02

Please sign in to comment.