Frederico Gago

Results 2 comments of Frederico Gago

Yes of course. Btw thanks for your work! data_structures/trees/binary_trees/binary_tree_recursive_dfs_traversals.py def postorder_print(self, start, traversal): """Left->Right->Root""" if start: traversal = self.postorder_print(start.left, traversal) traversal = self.postorder_print(start.right, traversal) traversal += (str(start.value) + "-") return...

If reciving this warning: DeprecationWarning: Use 'content=' to upload raw bytes/text content. warnings.warn(message, DeprecationWarning) -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html Use this: response = client.post("/users/", content=json.dumps(data))