Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mutantsan committed Dec 6, 2021
1 parent 2bc6c7b commit f658744
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ckanext/clamav/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def _get_conn() -> Union[ClamdUnixSocket, CustomClamdNetworkSocket]:
socket_type: str = tk.config.get(
c.CLAMAV_CONF_SOCKET_TYPE, c.CLAMAV_CONF_SOCKET_TYPE_DF
)
conn_timeout: int = ftk.asint(tk.config.get(
conn_timeout: int = tk.asint(tk.config.get(
c.CLAMAV_CONF_CONN_TIMEOUT, c.CLAMAV_CONF_CONN_TIMEOUT_DF
))

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# http://packaging.python.org/en/latest/tutorial.html#version
version='1.0.2',
version='1.0.3',

description='''Check upload resources for viruses''',
long_description=long_description,
Expand Down

0 comments on commit f658744

Please sign in to comment.