Skip to content

Commit

Permalink
simplify further
Browse files Browse the repository at this point in the history
  • Loading branch information
taegyunkim committed Feb 4, 2025
1 parent 6330ce0 commit 4f225aa
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions ddtrace/appsec/_python_info/stdlib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
from sys import version_info


if version_info < (3, 8, 0):
from .module_names_py37 import STDLIB_MODULE_NAMES
elif version_info < (3, 9, 0):
if version_info < (3, 9, 0):
from .module_names_py38 import STDLIB_MODULE_NAMES
elif version_info < (3, 10, 0):
from .module_names_py39 import STDLIB_MODULE_NAMES
Expand Down

0 comments on commit 4f225aa

Please sign in to comment.