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
class GxFuncModel(str, Enum): expect_table_row_count_to_equal = "expect_table_row_count_to_equal" expect_multicolumn_sum_to_equal = "expect_multicolumn_sum_to_equal"
update model to present all available expectations via enum with docs ?
try with class ExpectationConfiguration(SerializableDictDot): in /great_expectations/core/expectation_configuration.py
by reading package modules try to build json with docsstring https://stackoverflow.com/questions/487971/is-there-a-standard-way-to-list-names-of-python-modules-in-a-package
package util or inspect
The text was updated successfully, but these errors were encountered:
grillazz
No branches or pull requests
class GxFuncModel(str, Enum):
expect_table_row_count_to_equal = "expect_table_row_count_to_equal"
expect_multicolumn_sum_to_equal = "expect_multicolumn_sum_to_equal"
update model to present all available expectations via enum with docs ?
try with class ExpectationConfiguration(SerializableDictDot):
in
/great_expectations/core/expectation_configuration.py
by reading package modules try to build json with docsstring
https://stackoverflow.com/questions/487971/is-there-a-standard-way-to-list-names-of-python-modules-in-a-package
package util or inspect
The text was updated successfully, but these errors were encountered: