Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
joseph-v committed Oct 27, 2022
1 parent 82bd509 commit 9057291
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/delfin_e2e_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
matrix:
platform:
- ubuntu-18.04
python-version: [ 3.6, 3.7, 3.8 ]
python-version: [ 3.6, 3.7 ]

steps:
- name: Checkout delfin code
Expand Down
2 changes: 1 addition & 1 deletion delfin/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ def check_string_length(value, name, min_length=0, max_length=None,
strutils.check_string_length(value, name=name,
min_length=min_length,
max_length=max_length)
except(ValueError, TypeError) as exc:
except (ValueError, TypeError) as exc:
raise exception.InvalidInput(exc)

if not allow_all_spaces and value.isspace():
Expand Down

0 comments on commit 9057291

Please sign in to comment.