Skip to content

Commit 24a73e7

Browse files
committed
Remove system command to clear console on machine_learning/linear_discriminant_analysis.py
1 parent 69015fb commit 24a73e7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Diff for: machine_learning/linear_discriminant_analysis.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@
4444
"""
4545
from collections.abc import Callable
4646
from math import log
47-
from os import name, system
4847
from random import gauss, seed
4948
from typing import TypeVar
5049

@@ -399,7 +398,7 @@ def main():
399398
if input("Press any key to restart or 'q' for quit: ").strip().lower() == "q":
400399
print("\n" + "GoodBye!".center(100, "-") + "\n")
401400
break
402-
system("clear" if name == "posix" else "cls")
401+
# system("clear" if name == "posix" else "cls")
403402

404403

405404
if __name__ == "__main__":

0 commit comments

Comments
 (0)