Skip to content

Commit

Permalink
Fixes etingof#413
Browse files Browse the repository at this point in the history
Thanks to @mheppner for finding the issue and reporting the bug.
  • Loading branch information
flaviut authored Dec 26, 2021
1 parent becd15c commit 1d83bed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pysnmp/carrier/asyncio/dgram/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
from pysnmp.carrier import error
from pysnmp.carrier.asyncio.base import AbstractAsyncioTransport

IS_PYTHON_344_PLUS = platform.python_version_tuple() >= ('3', '4', '4')
IS_PYTHON_344_PLUS = [int(v) for v in platform.python_version_tuple()] >= [3, 4, 4]


class DgramAsyncioProtocol(asyncio.DatagramProtocol, AbstractAsyncioTransport):
Expand Down

0 comments on commit 1d83bed

Please sign in to comment.