Skip to content

Commit c1dee1e

Browse files
committed
Add comment explaining the two entry point lists for importers.
1 parent 18dd60e commit c1dee1e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pysteps/io/interface.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def discover_importers():
5252
import pkg_resources
5353

5454
importlib.reload(pkg_resources)
55-
55+
# Backward compatibility with previous entry point 'pysteps.plugins.importers' next to 'pysteps.plugins.importer'
5656
for entry_point in list(
5757
pkg_resources.iter_entry_points(group="pysteps.plugins.importer", name=None)
5858
) + list(
@@ -115,7 +115,6 @@ def importers_info():
115115

116116
difference = available_importers ^ importers_in_the_interface
117117
if len(difference) > 0:
118-
# print("\nIMPORTANT:")
119118
_diff = available_importers - importers_in_the_interface
120119
if len(_diff) > 0:
121120
print(

0 commit comments

Comments
 (0)