Skip to content

Commit

Permalink
fixed python changes
Browse files Browse the repository at this point in the history
  • Loading branch information
JaegerwaldDev committed Mar 24, 2024
1 parent b003537 commit 472a673
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cticf.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import re, os
from colorama import *

if os.name() == "nt": just_fix_windows_console()
if os.name == "nt": just_fix_windows_console()

def get_color(color: str):
ground, brightness = {
Expand Down Expand Up @@ -49,4 +49,4 @@ def rfile(path: str):
def inserts(text: str, *strings):
for string in strings:
text = text.replace("$$", str(string), 1)
return text
return text

0 comments on commit 472a673

Please sign in to comment.