fixed relative imports

This commit is contained in:
joesharratt1229 2025-02-08 09:46:46 +00:00
parent 184d5b4270
commit f10236a64c
2 changed files with 3 additions and 4 deletions

View file

@ -1,11 +1,10 @@
import random
from typing import Any, List, Tuple
import matplotlib.pyplot as plt
from dsl import *
from matplotlib.colors import ListedColormap, Normalize
global rng
rng = []
from .dsl import *
def unifint(rng: random.Random, diff_lb: float, diff_ub: float, bounds: Tuple[int, int]) -> int: