Skip to content

Commit

Permalink
Update main.py to fix empty lists in get_default_info function
Browse files Browse the repository at this point in the history
  • Loading branch information
appujet committed Apr 12, 2024
1 parent 05f7b1d commit 24a1668
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ def get_default_info():
},
"jvm": "Unknown",
"lavaplayer": "Unknown",
"sourceManagers": ["Unknown"],
"filters": ["Unknown"],
"plugins": ["Unknown"]
"sourceManagers": [],
"filters": [],
"plugins": []
}

# Function to update node info in the database
Expand Down

0 comments on commit 24a1668

Please sign in to comment.