I am learning PyQt5. How can I remove huge space below the Qlable:
This is my code:
class TftpTab(QWidget):
def __init__(self):
super().__init__()
host = QLabel("Host: ")
hostEdit = QLineEdit()
layout = QVBoxLayout()
layout.addWidget(host)
layout.addWidget(hostEdit)

