summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--arper.py5
-rw-r--r--parallelize.py1
2 files changed, 3 insertions, 3 deletions
diff --git a/arper.py b/arper.py
index a5b1de4..7700d5a 100644
--- a/arper.py
+++ b/arper.py
@@ -3,8 +3,6 @@
"""A caching layer around the kernel's network mapping between IPs and MACs"""
-
-
import datetime
import logging
import os
@@ -25,7 +23,8 @@ import site_config
logger = logging.getLogger(__name__)
cfg = config.add_commandline_args(
- f'MAC <--> IP Address mapping table cache ({__file__})', 'Commandline args related to MAC <--> IP Address mapping',
+ f'MAC <--> IP Address mapping table cache ({__file__})',
+ 'Commandline args related to MAC <--> IP Address mapping',
)
cfg.add_argument(
'--arper_cache_location',
diff --git a/parallelize.py b/parallelize.py
index 698a7ec..cd3eff4 100644
--- a/parallelize.py
+++ b/parallelize.py
@@ -2,6 +2,7 @@
"""A decorator to help with dead simple parallelization."""
+
import atexit
from enum import Enum
import functools