Skip to content

Commit

Permalink
adjust flake8 rules
Browse files Browse the repository at this point in the history
  • Loading branch information
drewmullen committed Jan 7, 2025
1 parent 1cf447c commit 115eead
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion kv_recursive.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def main():
parser.add_argument('--destination-mount', '-dm', default='kv-v2')
args = parser.parse_args()
logging.debug("Script started with arguments: %s", args)

if not args.destination_path:
args.destination_path = args.source_path
if not args.destination_url:
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# E128: Line continuation not lined up
# E402: Imports can be spaced out
# W503: Making if's readable
ignore = E121,E128,E402,W503,E12,C901
ignore = E121,E128,E402,W503,E12,C901,E302,E305,E501

# This project follows the datanav convention for line length.
max-complexity = 10
Expand Down

0 comments on commit 115eead

Please sign in to comment.