Update Skills
Browse files- AddSkillDetails.py +2 -2
AddSkillDetails.py
CHANGED
@@ -63,5 +63,5 @@ class AddSkill:
|
|
63 |
def GetSkillDetails():
|
64 |
conn = DbConnection.GetMySQLDbConnection()
|
65 |
query = "select skilldetails from skillmaster"
|
66 |
-
|
67 |
-
return
|
|
|
63 |
def GetSkillDetails():
|
64 |
conn = DbConnection.GetMySQLDbConnection()
|
65 |
query = "select skilldetails from skillmaster"
|
66 |
+
data = pd.read_sql_query(query, conn)
|
67 |
+
return data.describe()
|