Skip to content

Commit

Permalink
Add semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
kernc authored and glouppe committed May 4, 2021
1 parent 8c29916 commit c95a3e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skopt/space/space.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ def __init__(self, low, high, prior="uniform", base=10, transform=None,
" got {}".format(self.dtype))
elif isinstance(self.dtype, type) and \
not np.issubdtype(self.dtype, np.floating):
raise ValueError("dtype must be a np.floating subtype"
raise ValueError("dtype must be a np.floating subtype;"
" got {}".format(self.dtype))

if transform is None:
Expand Down

0 comments on commit c95a3e5

Please sign in to comment.