Skip to content

Commit

Permalink
Merge pull request #213 from santisoler/fix-dbdreader-bool
Browse files Browse the repository at this point in the history
Fix bug: set `have_dbdreader` to `False` if it's not installed
  • Loading branch information
jklymak authored Dec 18, 2024
2 parents 60ea41b + 85011e5 commit 4da36ae
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
import glob
import logging
import os
Expand Down

0 comments on commit 4da36ae

Please sign in to comment.