1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
#!/usr/bin/env python3 def main(): # TODO: Add proper logging print("Hello world") # FIXME: Remove debug print print("debug") # NOTE: This should be configurable data = [1, 2, 3] # HACK: Hardcoded for now process_data(data) # BUG: Doesn't validate input # TODO: Add type hints def process_data(data): for item in data: print(item) if __name__ == "__main__": main()