about summary refs log tree commit diff stats
path: root/hm
diff options
context:
space:
mode:
Diffstat (limited to 'hm')
-rw-r--r--hm/soispha/conf/python/pythonrc.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/hm/soispha/conf/python/pythonrc.py b/hm/soispha/conf/python/pythonrc.py
index 940ebaec..466d9788 100644
--- a/hm/soispha/conf/python/pythonrc.py
+++ b/hm/soispha/conf/python/pythonrc.py
@@ -1,10 +1,12 @@
 #!/usr/bin/env python3
 
+
 def is_vanilla() -> bool:
     import sys
 
     return not hasattr(__builtins__, "__IPYTHON__") and "bpython" not in sys.argv[0]
 
+
 def setup_history():
     import os
     import atexit
@@ -19,7 +21,7 @@ def setup_history():
     history: Path = state_home / "python" / "history"
 
     if not os.path.exists(history):
-        open(history, 'w')
+        open(history, "w")
 
     readline.read_history_file(str(history))
     atexit.register(readline.write_history_file, str(history))