Fix a problem introduced with previous type cleanup change.
[python_utils.git] / arper.py
index a5b1de410f53ae04f917e08c03660b32953e47c1..ca5d1d5fa59c6ad75bb811f0664c90e798a4745d 100644 (file)
--- 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',
@@ -48,7 +47,7 @@ cfg.add_argument(
 )
 
 
[email protected]_autoloaded_singleton()
[email protected]_autoloaded_singleton()  # type: ignore
 class Arper(persistent.Persistent):
     def __init__(self, cached_state: Optional[BiDict] = None) -> None:
         self.state = BiDict()