From 149de0223959195fb299a55a34da16f8f1198cb7 Mon Sep 17 00:00:00 2001 From: Michael Droettboom Date: Thu, 8 Nov 2018 17:25:29 -0500 Subject: [PATCH] LINT --- src/main.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/main.c b/src/main.c index ce1581fc5..7d2ca9c23 100644 --- a/src/main.c +++ b/src/main.c @@ -45,8 +45,9 @@ main(int argc, char** argv) Py_InitializeEx(0); - // This doesn't seem to work anymore, but I'm keeping it for good measure anyway - // The effective way to turn this off is below: setting sys.done_write_bytecode = True + // This doesn't seem to work anymore, but I'm keeping it for good measure + // anyway The effective way to turn this off is below: setting + // sys.done_write_bytecode = True setenv("PYTHONDONTWRITEBYTECODE", "1", 0); PyObject* sys = PyImport_ImportModule("sys"); @@ -57,9 +58,9 @@ main(int argc, char** argv) return 1; } - // By disabling the cache_tag, Python won't look for cached bytecode files when - // importing modules, which saves on filesystem I/O time - PyObject *implementation = PyObject_GetAttrString(sys, "implementation"); + // By disabling the cache_tag, Python won't look for cached bytecode files + // when importing modules, which saves on filesystem I/O time + PyObject* implementation = PyObject_GetAttrString(sys, "implementation"); if (implementation == NULL) { return 1; }