Skip to content

Commit f1f3f18

Browse files
fix(commitcli): missing files
1 parent 47dd5e2 commit f1f3f18

File tree

6 files changed

+10
-17
lines changed

6 files changed

+10
-17
lines changed

.commitclirc

-13
This file was deleted.

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
.idea/*
22
*.ignore.*
33
.env
4+
.commitclirc
45

56
# own files
67
*.commitcli_modules*

common/constants.py

+5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
constants:dict = {
2+
"config_names":{
3+
"db":{
4+
"file":"localfile"
5+
}
6+
},
27
"db":{
38
"filename":".ignore.commitcli_modules"
49
}

common/versions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version:str = "1.3.0"
1+
version:str = "1.3.1" #TODO: release this new version
22

33
def get_version()->str:
44
return version

data/__init__.py

Whitespace-only changes.

data/db.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from common.constants import constants
33
import pygit2
44
import os
5-
import pathlib
5+
from common.logger import logger
66

77
def get_git_root():
88
try:
@@ -31,7 +31,7 @@ def returnFileDb(filename:str = " nt") -> str|None:
3131
'''This return the full file path'''
3232
project_file = get_git_root()
3333
file_name = constants['db']['filename']
34-
34+
3535
if project_file is not None:
3636
project_file = f"{project_file}{file_name}"
3737

@@ -40,7 +40,7 @@ def returnFileDb(filename:str = " nt") -> str|None:
4040

4141

4242
def GetDatabase (config:Configuration) -> str|None:
43-
if config.config["db"] == 'file':
43+
if config.config["db"] == constants["config_names"]["db"]["file"]:
4444
return returnFileDb()
4545

4646
return None

0 commit comments

Comments
 (0)