Skip to content

Commit

Permalink
chore: remove print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
makkus committed Feb 7, 2024
1 parent 7aaad4f commit 6cca099
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ dependencies = [
"rich-click>=1.7.0,<1.8.0",
"ruamel.yaml>=0.18.0,<0.19.0",
"sortedcontainers>=2.4.0",
"SQLAlchemy>=2.0.20",
"stevedore>=5.0.0,<6.0.0",
"structlog>=21.5.0",
"tzlocal>=2.1,<6.0",
Expand Down
7 changes: 2 additions & 5 deletions src/kiara/registries/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -391,14 +391,11 @@ def create_new_store_config(

archive_path = os.path.abspath(os.path.join(store_base_path, file_name))

import sqlite3

print("xxx")
print(archive_path)

if not os.path.exists(archive_path):
Path(archive_path).parent.mkdir(exist_ok=True, parents=True)

import sqlite3

conn = sqlite3.connect(archive_path)

# Create a cursor object
Expand Down

0 comments on commit 6cca099

Please sign in to comment.