We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42898a7 commit da774ddCopy full SHA for da774dd
s_tracker.py
@@ -176,7 +176,7 @@ def gen_piGraph():
176
mplcursors.cursor()
177
178
179
-def memChart():
+def mem_Chart():
180
#this function creates a piechart that visualises used memory & remaining memory
181
t = date.today()
182
d_t = date.today()
@@ -274,7 +274,7 @@ def get_args():
274
print("There is only one drive.")
275
elif args.memchart:
276
print(f"Launching --{args.memchart}")
277
- plt.show(memChart())
+ plt.show(mem_Chart())
278
279
280
def main():
@@ -289,7 +289,7 @@ def main():
289
get_args()
290
graph_space()
291
gen_piGraph()
292
- memChart()
+ mem_Chart()
293
print("")
294
295
0 commit comments