Skip to content

fix: correct __int__ typo to __init__#281

Open
Mr-Neutr0n wants to merge 1 commit intoFunAudioLLM:mainfrom
Mr-Neutr0n:fix/init-method-typo
Open

fix: correct __int__ typo to __init__#281
Mr-Neutr0n wants to merge 1 commit intoFunAudioLLM:mainfrom
Mr-Neutr0n:fix/init-method-typo

Conversation

@Mr-Neutr0n
Copy link

Bug

A class constructor is defined as def __int__(self, ...) instead of def __init__(self, ...). This means the method defines integer conversion rather than initialization, so the constructor logic never runs when the class is instantiated.

Fix

Renamed __int__ to __init__.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant