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
I'm familiarizing myself with the codebase and cleaning up some type annotations, and I've noticed something off with the write method in the KozaApp class. Whether or not the class validates depends on the presence of the schema attribute in the class instance:
I'm familiarizing myself with the codebase and cleaning up some type annotations, and I've noticed something off with the
write
method in theKozaApp
class. Whether or not the class validates depends on the presence of theschema
attribute in the class instance:koza/src/koza/app.py
Lines 151 to 154 in fceafe5
However, the code that sets that attribute is commented out in the
__init__
method:koza/src/koza/app.py
Lines 52 to 57 in fceafe5
It looks like it was removed in a0ba9cb. Is it intentional that that block of code in
write()
should never run?The text was updated successfully, but these errors were encountered: