def handleDataQualityCheck():
"""
This method is called when the user wants to check the data quality of a UI log
and get static noise filters applied on the log.
1. It displays a file dialog to select the file. The method returns multiple files
that can be checked for data compliance.
2. After the event log(s) have been selected, the method starts a worker thread to process
them using the staticNoiseIdentification in the utils.py.
This can run in the background and after compilation display a new PyQT window.
3. Once the processing is complete a new window with errors is displayed.
:param
"""
# Needs implementation
# Suggestion is a GUI display the wrong data based on utils.staticNoiseIdentification()_
In GUI we want to implement the following:
def handleDataQualityCheck(): """ This method is called when the user wants to check the data quality of a UI log and get static noise filters applied on the log.