File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11import logging
2+ from importlib .metadata import distribution , entry_points
23from pathlib import Path
34
4- from importlib .metadata import distribution , entry_points
55from cryptography .exceptions import InvalidSignature
66from otumat import hash_pkg , verify
77
@@ -39,7 +39,7 @@ def _import_plugins(category):
3939 eps = entry_points ()
4040
4141 # Handle both Python 3.9 and 3.10+ entry points API
42- if hasattr (eps , ' select' ):
42+ if hasattr (eps , " select" ):
4343 group_eps = eps .select (group = group_name )
4444 else :
4545 group_eps = eps .get (group_name , [])
Original file line number Diff line number Diff line change 1+ from importlib .metadata import distribution
12from os import path
23
3- from importlib .metadata import distribution
44import pytest
55
66import datajoint .errors as djerr
You can’t perform that action at this time.
0 commit comments