Hello,
Sorry to be opening another issue so early after the last one, but I found something else:
v = tomlkit.loads("""[x]\na.b = {}""")
v["x"]["c"] = 3
print(tomlkit.dumps(v))
output:
As you can see, there should be a new line before c = 3
Note that this doesn't happens with either:
"""[x]\na.b = {}\n"""
"""[x]\na = {}"""
Hello,
Sorry to be opening another issue so early after the last one, but I found something else:
output:
As you can see, there should be a new line before
c = 3Note that this doesn't happens with either:
"""[x]\na.b = {}\n""""""[x]\na = {}"""