Skip to content

Commit 145f165

Browse files
committed
Changed from directory
1 parent ff4ad62 commit 145f165

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.gitmodules

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
[submodule "pyBjson"]
2-
path = pyBjson
1+
[submodule "modules/pyBjson"]
2+
path = modules/pyBjson
33
url = https://github.com/STBrian/pyBjson.git

main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
import tkinter.filedialog
55
import tkinter.messagebox
66
import tkinter.ttk
7-
from pyBjson import convertBjsonToJson
7+
from modules.pyBjson import convertBjsonToJson
88
import json
99
import threading
1010
from functools import partial
1111
import sys, os, argparse
12-
from pyBjson.conversions import uint_to_bytes, int_to_bytes, float_to_bytes
12+
from modules.pyBjson.conversions import uint_to_bytes, int_to_bytes, float_to_bytes
1313

1414
def getBjsonContent(fp: str|Path):
1515
return convertBjsonToJson(fp)

0 commit comments

Comments
 (0)