Skip to content

Commit

Permalink
Merge pull request #17 from AeroFlorian/deletion
Browse files Browse the repository at this point in the history
Deletion
  • Loading branch information
AeroFlorian authored Sep 3, 2024
2 parents f3febc1 + 8d41cac commit f1514f1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@

*.pyc
NetConfParser.log
3 changes: 3 additions & 0 deletions netconfparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@ def check_value_if_exists_recurse(dic, value):


def display_list_tech(l):
if type(l) is not list:
l = [l]
return " + ".join([str(x) for x in l])


Expand Down Expand Up @@ -713,6 +715,7 @@ def clear_tree(event):
def get_text_box(event):
result_box.delete(*result_box.get_children())
analysis_box.delete(*analysis_box.get_children())
back_to_tree_view(None)
full = text_box.get("1.0", tk.END)
text_box.delete("1.0", tk.END)
import threading
Expand Down
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
tkinterdnd2
xmltodict

0 comments on commit f1514f1

Please sign in to comment.