[cb5984]: / hd_glio / utils.py

Download this file

10 lines (5 with data), 127 Bytes

1
2
3
4
5
6
7
8
9
import sys, os
def blockPrint():
sys.stdout = open(os.devnull, 'w')
def enablePrint():
sys.stdout = sys.__stdout__