Skip to content

Commit

Permalink
fix: Add forgotten init file to databuilder/models/feature module (#1211
Browse files Browse the repository at this point in the history
)

* add init file to feature module

Signed-off-by: Dmitriy Kunitskiy <[email protected]>

* loosen mypy annotation

Signed-off-by: Dmitriy Kunitskiy <[email protected]>
  • Loading branch information
Dmitriy Kunitskiy authored Jun 9, 2021
1 parent 039ac7e commit f32721e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def get_scope(self) -> str:
def _retrieve_tables(self,
dataset: DatasetRef
) -> Iterator[Watermark]:
sharded_table_watermarks: Dict[str, Dict[str, Union[str, Dict[str, Any]]]] = {}
sharded_table_watermarks: Dict[str, Dict[str, Union[str, Any]]] = {}
cutoff_time_in_epoch = timegm(time.strptime(self.cutoff_time, BigQueryWatermarkExtractor.DATE_TIME_FORMAT))

for page in self._page_table_list_results(dataset):
Expand Down
Empty file.
2 changes: 1 addition & 1 deletion databuilder/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from setuptools import find_packages, setup

__version__ = '4.5.0'
__version__ = '4.5.1'

requirements_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'requirements.txt')
with open(requirements_path) as requirements_file:
Expand Down

0 comments on commit f32721e

Please sign in to comment.