You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running the example script test_conteme.py in Windows, an error occurs. This error is the result of calling the getResult method of class ArquivoPT, which uses the module multiprocessing.
A solution for the problem may be found here. One just needs to incude if __name__ == '__main__': before calling the method of the instantiated class.
Hope it helps.
The text was updated successfully, but these errors were encountered:
When running the example script test_conteme.py in Windows, an error occurs. This error is the result of calling the
getResult
method of classArquivoPT
, which uses the modulemultiprocessing
.A solution for the problem may be found here. One just needs to incude
if __name__ == '__main__':
before calling the method of the instantiated class.Hope it helps.
The text was updated successfully, but these errors were encountered: