push code back with legal issues fix
[ric-plt/e2mgr.git] / Automation / Tests / Get-All-Nodes / flush.py
1 import redis
2
3 r = redis.Redis(host='localhost', port=6379, db=0)
4
5 r.flushall()
6
7 print("Flush Success")