Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
isahers1 committed May 14, 2022
1 parent 3c8535a commit 5b97a16
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Binary file modified __pycache__/logicObjects.cpython-39.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion gui.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from tkinter import PhotoImage
from tkinter import *
from tkinter import ttk
from tkinter import *
from turtle import undo
from proof import *
from tkinter.scrolledtext import ScrolledText
Expand Down
2 changes: 1 addition & 1 deletion logicObjects.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def __repr__(self):
return str(self.elem) + " ∈ " + str(self.group)

def toLaTeX(self):
return str(self.elem) + r" \in " + str(self.grp)
return str(self.elem) + r" \in " + str(self.group)

class Eq:
def __init__(self,LHS,RHS,pg):
Expand Down

0 comments on commit 5b97a16

Please sign in to comment.