Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-jdu committed Nov 9, 2022
1 parent efde534 commit b6245a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions src/snowflake/connector/storage_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,8 @@ def __init__(
)
# DOWNLOAD
self.full_dst_file_name: str | None = (
os.path.realpath(
os.path.join(
self.meta.local_location, os.path.basename(self.meta.dst_file_name)
)
os.path.join(
self.meta.local_location, os.path.basename(self.meta.dst_file_name)
)
if self.meta.local_location
else None
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ known_first_party =snowflake,parameters,generate_test_files
[flake8]
# Notes on ignores:
# - all ignored Ds mean doc issues, these should be cleaned up
ignore = B011,C901,D100,D101,D102,D103,D104,D105,D107,D401,E203,E402,E501,F821,W503
ignore = B011,B027,C901,D100,D101,D102,D103,D104,D105,D107,D401,E203,E402,E501,F821,W503
exclude=
build,tool,.tox,parameters.py,parameters_jenkins.py,
# Disable checking virtualenv contents
Expand Down

0 comments on commit b6245a4

Please sign in to comment.