From 804937a5e1957d3f214de101c6f0e7f956ac8ede Mon Sep 17 00:00:00 2001 From: Devon Fulcher Date: Wed, 20 Sep 2023 15:11:20 -0500 Subject: [PATCH] slight language change --- .../parsing/where_filter/where_filter_entity.py | 2 +- .../parsing/where_filter/where_filter_time_dimension.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dbt_semantic_interfaces/parsing/where_filter/where_filter_entity.py b/dbt_semantic_interfaces/parsing/where_filter/where_filter_entity.py index b6b66784..62ba32c9 100644 --- a/dbt_semantic_interfaces/parsing/where_filter/where_filter_entity.py +++ b/dbt_semantic_interfaces/parsing/where_filter/where_filter_entity.py @@ -16,7 +16,7 @@ class EntityStub(ProtocolHint[QueryInterfaceEntity]): - """An Entity implementation that does nothing to satisfy the protocol. + """An Entity implementation that just satisfies the protocol. QueryInterfaceEntity currently has no methods and the parameter set is created in the factory. So, there is nothing to do here. diff --git a/dbt_semantic_interfaces/parsing/where_filter/where_filter_time_dimension.py b/dbt_semantic_interfaces/parsing/where_filter/where_filter_time_dimension.py index 54ac8a2c..2873b8e5 100644 --- a/dbt_semantic_interfaces/parsing/where_filter/where_filter_time_dimension.py +++ b/dbt_semantic_interfaces/parsing/where_filter/where_filter_time_dimension.py @@ -16,7 +16,7 @@ class TimeDimensionStub(ProtocolHint[QueryInterfaceTimeDimension]): - """A TimeDimension implementation that does nothing to satisfy the protocol. + """A TimeDimension implementation that just satisfies the protocol. QueryInterfaceTimeDimension currently has no methods and the parameter set is created in the factory. So, there is nothing to do here.