From 12f6baefad8ef57e99c628cbd1427e6713089af3 Mon Sep 17 00:00:00 2001 From: fluzzi Date: Mon, 4 Apr 2022 13:52:26 -0300 Subject: [PATCH] updates --- connpy/connapp.py | 1 - docs/connpy/index.html | 6 +++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/connpy/connapp.py b/connpy/connapp.py index d4bb266..c54c39b 100755 --- a/connpy/connapp.py +++ b/connpy/connapp.py @@ -8,7 +8,6 @@ import ast import argparse import sys import inquirer -import json from .core import node diff --git a/docs/connpy/index.html b/docs/connpy/index.html index cdb2eb1..dc8795f 100644 --- a/docs/connpy/index.html +++ b/docs/connpy/index.html @@ -91,7 +91,7 @@ hasip = router.test("show ip int brief","1.1.1.1") if hasip: print("Router has ip 1.1.1.1") else: - print("router don't has ip 1.1.1.1") + print("router does not have ip 1.1.1.1")

Using manager configuration

import connpy
@@ -211,7 +211,7 @@ hasip = router.test("show ip int brief","1.1.1.1")
 if hasip:
     print("Router has ip 1.1.1.1")
 else:
-    print("router don't has ip 1.1.1.1")
+    print("router does not have ip 1.1.1.1")
 ```
 
 ### Using manager configuration
@@ -257,7 +257,7 @@ from .connapp import connapp
 from pkg_resources import get_distribution
 
 __all__ = ["node", "nodes", "configfile", "connapp"]
-__version__ = "2.0.10"
+__version__ = "2.0.0"
 __author__ = "Federico Luzzi"
 __pdoc__ = {
     'core': False,