From 288912f50b2eb38667bf6fd3259f02c2dda311ba Mon Sep 17 00:00:00 2001 From: Zachary Vance Date: Wed, 3 Jul 2024 13:25:51 -0400 Subject: [PATCH] Don't make __pycache__ --- blog | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/blog b/blog index 43a778e..79ad20c 100755 --- a/blog +++ b/blog @@ -14,13 +14,15 @@ not documented. Other than that I think it's pretty nice! """ +import sys +sys.dont_write_bytecode = True + import argparse import chevron as mustache import collections import math import collections import os, os.path -import sys import yaml from pathlib import Path -- 2.47.3