Fix overzealous find/replace for line breaks

This commit is contained in:
mDuo13
2023-10-16 16:54:35 -07:00
parent 838225f798
commit 7f0e954708
4 changed files with 1 additions and 4 deletions

View File

@@ -482,7 +482,6 @@ if ((lsfDisableMaster & acct_flags) === lsfDisableMaster) {
```python
# Assuming the JSON-RPC response above is parsed from JSON
# and saved as the variable account_info_response
lsfDisableMaster = 0x00100000
acct_flags = account_info_response["result"]["account_data"]["Flags"]

View File

@@ -1019,6 +1019,5 @@ btn_op_cancel_offer = tk.Button(master=frm_form, text="Cancel Offer",
btn_op_cancel_offer.grid(row=16, column=3, sticky="nsew")
# Start the application
window.mainloop()
```

View File

@@ -35,7 +35,6 @@ release_date_utc = datetime.datetime(2017,11,13,0,0,0,tzinfo=datetime.timezone.u
release_date_ripple = int(release_date_utc.timestamp()) - 946684800
print(release_date_ripple)
# 563846400
```
#}-->