We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello! I wanted to report an error that I experienced while trying to run scenario_generator.py with no changes:
scenario_generator.py
Traceback (most recent call last): File "/mypath/OpenMATB/scenario_generator.py", line 48, in <module> win = Window(0, '', False, False, False, False) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/mypath/OpenMATB/core/window.py", line 45, in __init__ super().__init__(fullscreen=self._fullscreen, width=self._width, height=self._height, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ TypeError: BaseWindow.__init__() got multiple values for argument 'fullscreen'
I am using Python 3.12.3 with the following dependencies:
pyglet==1.5.26 pylsl==1.16.1 pyparallel==0.2.2 rstr==3.1.0
I was able to get the scenario generation working here: https://github.com/juliencegarra/OpenMATB/compare/master...danibene:OpenMATB:change/scenario_generation?expand=1
By changing win = Window(0, '', False, False, False, False) to win = Window() in scenario_generator.py.
win = Window(0, '', False, False, False, False)
win = Window()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello! I wanted to report an error that I experienced while trying to run
scenario_generator.py
with no changes:I am using Python 3.12.3 with the following dependencies:
I was able to get the scenario generation working here: https://github.com/juliencegarra/OpenMATB/compare/master...danibene:OpenMATB:change/scenario_generation?expand=1
By changing
win = Window(0, '', False, False, False, False)
towin = Window()
inscenario_generator.py
.The text was updated successfully, but these errors were encountered: