Skip to content

Commit

Permalink
Posix Path Error (#102)
Browse files Browse the repository at this point in the history
* Commit requirements.txt to pull striptease

* Fixing PosixPath Error in hdf5db.py

* Restoring old version

* Fixing Posix Path Error

* Adding deleted txt files
  • Loading branch information
Frastandreetto committed Apr 8, 2024
1 parent e9cf7a4 commit 2885874
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ scipy~=1.9.0
flake8~=4.0.1
pre-commit~=2.15.0
openpyxl~=3.0.9
rich~=10.14.0
rich~=12.5.1
pyzstd~=0.15.0
mako~=1.2.2
sphinxcontrib.asciinema~=0.3.3
Expand Down
2 changes: 1 addition & 1 deletion striptease/hdf5db.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def scan_data_path(
) -> sqlite3.Connection:

db_path = Path(path) / database_name
db = sqlite3.connect(db_path)
db = sqlite3.connect(str(db_path))
create_storage_db(db)

curs = db.cursor()
Expand Down

0 comments on commit 2885874

Please sign in to comment.