Skip to content

Commit

Permalink
made tests work again
Browse files Browse the repository at this point in the history
  • Loading branch information
kalfasyan committed Jul 10, 2023
1 parent 89854df commit 254fbb9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_utils_tiling.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
import yaml
from lxml import etree as ET

from settings import Settings
from utils_annotations import (read_coco_coordinates_from_json,
from plakakia.settings import Settings
from plakakia.utils_annotations import (read_coco_coordinates_from_json,
read_pascalvoc_coordinates_from_xml,
read_yolo_coordinates_from_txt)
from utils_tiling import add_border, tile_image
from plakakia.utils_tiling import add_border, tile_image

# Read the settings from the config.yaml file
with open('config.yaml', 'r') as f:
with open('plakakia/config.yaml', 'r') as f:
config = yaml.load(f, Loader=yaml.FullLoader)

# Create a settings object
Expand Down

0 comments on commit 254fbb9

Please sign in to comment.