Skip to content

Commit ff184ef

Browse files
committed
B¤File | Disable Identation for cJSON
1 parent cb81ccb commit ff184ef

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

.adellian/Git.mpkg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"Type": "Adellian",
44
"Name": "TSN Abstracter (Git)",
55
"Description": "The Python Framework for nearly all of The Sirio Network's Projects.",
6-
"Version": [6,1,3],
6+
"Version": [6,1,4],
77
"Required": ["Eleison", "Kyrie", "Server"],
88
"Default": ["Eleison", "Kyrie", "Server"],
99
"Dependencies": [],

.adellian/Stable.mpkg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"Type": "Adellian",
44
"Name": "TSN Abstracter",
55
"Description": "The Python Framework for nearly all of The Sirio Network's Projects.",
6-
"Version": [6,1,3],
6+
"Version": [6,1,4],
77
"Required": ["Eleison", "Kyrie", "Server"],
88
"Default": ["Eleison", "Kyrie", "Server"],
99
"Dependencies": [],

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ TSNA automatically attempts to read data from `App.tsna`, this file contains bas
6363
"Version": [1,0,0],
6464
"Version_Prefix": "",
6565
"Version_Suffix": "_dev",
66-
"TSNA": [6,0,0] # Minimum required TSNA Version for the Application to run,
66+
"TSNA": [6,0,0], # Minimum required TSNA Version for the Application to run,
6767
"Public": {}, # You can put anything in there, used for application-specific options.
6868
"Private": {} # Application's private data to be only used internally. This is not meant to be present in the App.tsna file.
6969
}

TSN_Abstracter/File.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ def JSON_Write(Path: str, Dictionary: typing.Mapping[str, typing.Any] | list[typ
199199
"""
200200
try:
201201
Path_Require(Path);
202-
return Write(Path, json.dumps(Dictionary, indent=2), Compressed);
202+
return Write(Path, json.dumps(Dictionary, indent=2 if (not Compressed) else 0), Compressed);
203203
except Exception as Error:
204204
Log.Error(f"Error Writing JSON {Path}.\n\tDATA: {Dictionary}\n\tEXCEPTION:{Error}");
205205
return False;

TSN_Abstracter/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
class TSN_Abstracter:
9595
"""Class containing some information about TSN_Abstracter & Version Checking
9696
Yes this looks like a mess."""
97-
Version_Tuple: tuple[int, int, int] = (6,1,3);
97+
Version_Tuple: tuple[int, int, int] = (6,1,4);
9898

9999

100100

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "TSN_Abstracter"
3-
version = "6.1.3"
3+
version = "6.1.4"
44
authors = [
55
{ name="Ascellayn", email="contact+pypi@sirio-network.com" },
66
{ name="The Sirio Network", email="contact+pypi@sirio-network.com" },

0 commit comments

Comments
 (0)