Skip to content

Commit

Permalink
Merge pull request #19 from sodadata/fix-block-img
Browse files Browse the repository at this point in the history
Updated logo image url
  • Loading branch information
AlessandroLollo authored May 14, 2023
2 parents b0cd520 + deabf9e commit 552bfc5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pycqa/isort
rev: 5.10.1
rev: 5.12.0
hooks:
- id: isort
language_version: python3
Expand Down
4 changes: 3 additions & 1 deletion prefect_soda_core/soda_configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ class SodaConfiguration(Block):
configuration_yaml_str: Optional[str]

_block_type_name: Optional[str] = "Soda Configuration"
_logo_url: Optional[HttpUrl] = "https://www.TODO.todo" # noqa
_logo_url: Optional[
HttpUrl
] = "https://github.com/PrefectHQ/prefect/blob/main/docs/img/collections/soda.png" # noqa

@root_validator(pre=True)
def check_block_configuration(cls, values):
Expand Down
4 changes: 3 additions & 1 deletion prefect_soda_core/sodacl_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ class SodaCLCheck(Block):
sodacl_yaml_str: Optional[str]

_block_type_name: Optional[str] = "SodaCL Check"
_logo_url: Optional[HttpUrl] = "https://www.to.do" # noqa
_logo_url: Optional[
HttpUrl
] = "https://github.com/PrefectHQ/prefect/blob/main/docs/img/collections/soda.png" # noqa

@root_validator(pre=True)
def check_block_configuration(cls, values):
Expand Down

0 comments on commit 552bfc5

Please sign in to comment.