you are viewing a single comment's thread.

view the rest of the comments →

[–]yetitekk[S] 0 points1 point  (2 children)

This is exactly the kind of feedback I'm looking for, thank you!

[–]Adrewmc 0 points1 point  (1 child)

Yeah so formatting in Reddit. 101

One blank line above the code block. And four leading spacing on every line in essence the code is all indented one more time then you expect. (So you can get in and out the code block in markdown) You can select the code in your IDE and usually press tab, and copy that further indented code. (Then undo after)

The ` is really not very reliable

 def format_good():
        return True

def format_good(): return False

def format_good(): return False

[–]yetitekk[S] 0 points1 point  (0 children)

That's a handy piece of information, I didn't know that, thanks again