File tree 6 files changed +10
-17
lines changed
6 files changed +10
-17
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
.idea /*
2
2
* .ignore. *
3
3
.env
4
+ .commitclirc
4
5
5
6
# own files
6
7
* .commitcli_modules *
Original file line number Diff line number Diff line change 1
1
constants :dict = {
2
+ "config_names" :{
3
+ "db" :{
4
+ "file" :"localfile"
5
+ }
6
+ },
2
7
"db" :{
3
8
"filename" :".ignore.commitcli_modules"
4
9
}
Original file line number Diff line number Diff line change 1
- version :str = "1.3.0"
1
+ version :str = "1.3.1" #TODO: release this new version
2
2
3
3
def get_version ()-> str :
4
4
return version
Original file line number Diff line number Diff line change 2
2
from common .constants import constants
3
3
import pygit2
4
4
import os
5
- import pathlib
5
+ from common . logger import logger
6
6
7
7
def get_git_root ():
8
8
try :
@@ -31,7 +31,7 @@ def returnFileDb(filename:str = " nt") -> str|None:
31
31
'''This return the full file path'''
32
32
project_file = get_git_root ()
33
33
file_name = constants ['db' ]['filename' ]
34
-
34
+
35
35
if project_file is not None :
36
36
project_file = f"{ project_file } { file_name } "
37
37
@@ -40,7 +40,7 @@ def returnFileDb(filename:str = " nt") -> str|None:
40
40
41
41
42
42
def GetDatabase (config :Configuration ) -> str | None :
43
- if config .config ["db" ] == ' file' :
43
+ if config .config ["db" ] == constants [ "config_names" ][ "db" ][ " file" ] :
44
44
return returnFileDb ()
45
45
46
46
return None
You can’t perform that action at this time.
0 commit comments