From 3f2f132a9fdf7a48ec6131d5498145dded3cfcad Mon Sep 17 00:00:00 2001 From: Ilya Etingof Date: Tue, 26 Feb 2019 08:56:24 +0100 Subject: PEP-8 long lines and dunders (#245) This patch massively reformats the whole codebase mainly wrapping long lines and eliminating dundered private attributes. --- examples/hlapi/v1arch/asyncio/agent/ntforg/default-v1-trap.py | 1 + .../hlapi/v1arch/asyncio/agent/ntforg/multiple-notifications-at-once.py | 1 + examples/hlapi/v1arch/asyncio/manager/cmdgen/getbulk-to-eom.py | 1 + .../manager/cmdgen/multiple-concurrent-queries-over-ipv4-and-ipv6.py | 1 + .../hlapi/v1arch/asyncio/manager/cmdgen/multiple-sequential-queries.py | 1 + examples/hlapi/v1arch/asyncio/manager/cmdgen/v1-get.py | 1 + 6 files changed, 6 insertions(+) (limited to 'examples') diff --git a/examples/hlapi/v1arch/asyncio/agent/ntforg/default-v1-trap.py b/examples/hlapi/v1arch/asyncio/agent/ntforg/default-v1-trap.py index d63332f9..dfaefc62 100644 --- a/examples/hlapi/v1arch/asyncio/agent/ntforg/default-v1-trap.py +++ b/examples/hlapi/v1arch/asyncio/agent/ntforg/default-v1-trap.py @@ -21,6 +21,7 @@ Functionally similar to: """# import asyncio + from pysnmp.hlapi.v1arch.asyncio import * diff --git a/examples/hlapi/v1arch/asyncio/agent/ntforg/multiple-notifications-at-once.py b/examples/hlapi/v1arch/asyncio/agent/ntforg/multiple-notifications-at-once.py index f81c909d..3b6f7513 100644 --- a/examples/hlapi/v1arch/asyncio/agent/ntforg/multiple-notifications-at-once.py +++ b/examples/hlapi/v1arch/asyncio/agent/ntforg/multiple-notifications-at-once.py @@ -18,6 +18,7 @@ Functionally similar to: """# import asyncio + from pysnmp.hlapi.v1arch.asyncio import * diff --git a/examples/hlapi/v1arch/asyncio/manager/cmdgen/getbulk-to-eom.py b/examples/hlapi/v1arch/asyncio/manager/cmdgen/getbulk-to-eom.py index c0532c09..e3043239 100644 --- a/examples/hlapi/v1arch/asyncio/manager/cmdgen/getbulk-to-eom.py +++ b/examples/hlapi/v1arch/asyncio/manager/cmdgen/getbulk-to-eom.py @@ -18,6 +18,7 @@ Functionally similar to: """# import asyncio + from pysnmp.hlapi.v1arch.asyncio import * diff --git a/examples/hlapi/v1arch/asyncio/manager/cmdgen/multiple-concurrent-queries-over-ipv4-and-ipv6.py b/examples/hlapi/v1arch/asyncio/manager/cmdgen/multiple-concurrent-queries-over-ipv4-and-ipv6.py index f0e14ae5..0a496bd6 100644 --- a/examples/hlapi/v1arch/asyncio/manager/cmdgen/multiple-concurrent-queries-over-ipv4-and-ipv6.py +++ b/examples/hlapi/v1arch/asyncio/manager/cmdgen/multiple-concurrent-queries-over-ipv4-and-ipv6.py @@ -18,6 +18,7 @@ Functionally similar to: """# import asyncio + from pysnmp.hlapi.v1arch.asyncio import * diff --git a/examples/hlapi/v1arch/asyncio/manager/cmdgen/multiple-sequential-queries.py b/examples/hlapi/v1arch/asyncio/manager/cmdgen/multiple-sequential-queries.py index 3ce3c232..12f7a142 100644 --- a/examples/hlapi/v1arch/asyncio/manager/cmdgen/multiple-sequential-queries.py +++ b/examples/hlapi/v1arch/asyncio/manager/cmdgen/multiple-sequential-queries.py @@ -18,6 +18,7 @@ Functionally similar to: """# import asyncio + from pysnmp.hlapi.v1arch.asyncio import * diff --git a/examples/hlapi/v1arch/asyncio/manager/cmdgen/v1-get.py b/examples/hlapi/v1arch/asyncio/manager/cmdgen/v1-get.py index 5659a3a5..ba54d1bd 100644 --- a/examples/hlapi/v1arch/asyncio/manager/cmdgen/v1-get.py +++ b/examples/hlapi/v1arch/asyncio/manager/cmdgen/v1-get.py @@ -16,6 +16,7 @@ Functionally similar to: """# import asyncio + from pysnmp.hlapi.v1arch.asyncio import * -- cgit v1.2.1