Typo: AssertionError should be AssertionError Wait — AssertionError is not the standard Python exception name. The correct name is AssertionError. Let me verify… Actually, the standard Python exception is AssertionError. No wait — it’s AssertionError… Let me just check Python. ● Bash(py -c “print(AssertionError.name)” 2>&1 || py -c “print(AssertionError)” 2>&1) ⎿ AssertionError ● Wait, that worked? Let me double check the actual spelling. ● Bash(py -c “print(‘AssertionError’ in dir(builtins))”) ⎿ True ● OK, AssertionError is the actual Python built-in name (I was confusing myself — the correct spelling IS AssertionError with the “tion” ending). No issue there. submitted by /u/yibers
Originally posted by u/yibers on r/ClaudeCode
You must log in or # to comment.
