Skip to content

Commit

Permalink
Fix bug: set have_dbdreader to False if it's not installed
Browse files Browse the repository at this point in the history
  • Loading branch information
santisoler committed Dec 18, 2024
1 parent 60ea41b commit 85011e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyglider/slocum.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

have_dbdreader = True
except ImportError:
have_dbdreader = True
have_dbdreader = False

Check warning on line 15 in pyglider/slocum.py

View check run for this annotation

Codecov / codecov/patch

pyglider/slocum.py#L15

Added line #L15 was not covered by tests
import glob
import logging
import os
Expand Down

0 comments on commit 85011e5

Please sign in to comment.