Skip to content

Commit

Permalink
Fix missing bracket (#47)
Browse files Browse the repository at this point in the history
* Fix missing bracket

* Update version number
  • Loading branch information
michaelshin committed Apr 20, 2023
1 parent 7ee8a97 commit c3ff263
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deepview_profile/db/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import os
import sqlite3

BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
DB_PATH = os.path.join(BASE_DIR, "deepview.sqlite3")

class DatabaseInterface:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "deepview-profile"
version = "0.12.1"
version = "0.12.2"
description = "Interactive performance profiling and debugging tool for PyTorch neural networks."
authors = ["CentML <support@centml.ai>"]
license = "Apache-2.0"
Expand Down

0 comments on commit c3ff263

Please sign in to comment.