Skip to content

Commit

Permalink
Fix: fix file addressing
Browse files Browse the repository at this point in the history
  • Loading branch information
mahdidehghandev committed Dec 10, 2024
1 parent 49ecf7b commit be85edd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import matplotlib.pyplot as plt
import numpy as np
from symbol_table import SymbolTable

import os

def read_file(entry):
try:
Expand Down Expand Up @@ -136,4 +136,4 @@ def main(file_name):


if __name__ == "__main__":
main('Examples\\test.txt')
main(os.path.join('Examples','test.txt'))

0 comments on commit be85edd

Please sign in to comment.