Skip to content

Commit c3ff263

Browse files
authored
Fix missing bracket (#47)
* Fix missing bracket * Update version number
1 parent 7ee8a97 commit c3ff263

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

deepview_profile/db/database.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import os
33
import sqlite3
44

5-
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
5+
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
66
DB_PATH = os.path.join(BASE_DIR, "deepview.sqlite3")
77

88
class DatabaseInterface:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "deepview-profile"
3-
version = "0.12.1"
3+
version = "0.12.2"
44
description = "Interactive performance profiling and debugging tool for PyTorch neural networks."
55
authors = ["CentML <[email protected]>"]
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)