Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkerl committed Jun 24, 2022
1 parent a65eb1c commit 80b500b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apis/python/tools/outgestor
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
# ================================================================

import argparse
import logging
import os
import sys
import logging

import tiledb

Expand Down
4 changes: 3 additions & 1 deletion apis/python/tools/populate-soco
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,9 @@ select `relative=True`. (This is the default.)
if args.list:
count += 1
if count != 1:
logging.error(f"{os.path.basename(sys.argv[0])}: need just one of -a, -r, or -l.")
logging.error(
f"{os.path.basename(sys.argv[0])}: need just one of -a, -r, or -l."
)
sys.exit(1)

if args.add or args.remove:
Expand Down

0 comments on commit 80b500b

Please sign in to comment.