Skip to content

Commit

Permalink
Deprecate _render_column_type
Browse files Browse the repository at this point in the history
  • Loading branch information
roblim committed Jul 3, 2019
1 parent 58c9830 commit b5756a5
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions great_expectations/render/renderer/column_section_renderer.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,23 +100,6 @@ def _render_header(cls, evrs, content_blocks, column_type=None):
}
})

# @classmethod
# def _render_column_type(cls, evrs, content_blocks):
# new_block = None
# type_evr = cls._find_evr_by_type(
# evrs,
# "expect_column_values_to_be_of_type"
# )
# if type_evr:
# # Kinda weird to be pulling *descriptive* info out of expectation kwargs
# # Maybe at least check success?
# type_ = type_evr["expectation_config"]["kwargs"]["type_"]
# new_block = {
# "content_block_type": "text",
# "content": [type_]
# }
# content_blocks.append(new_block)

@classmethod
def _render_expectation_types(cls, evrs, content_blocks):
# NOTE: The evr-fetching function is an kinda similar to the code other_section_renderer.DescriptiveOverviewSectionRenderer._render_expectation_types
Expand Down

0 comments on commit b5756a5

Please sign in to comment.