Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
171 changes: 0 additions & 171 deletions dpsynth/bin/derive_domain.py

This file was deleted.

1 change: 1 addition & 0 deletions dpsynth/eval/correlation_computation.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"""Computes two-way attribute correlations."""

from collections.abc import Iterable
import dataclasses
import itertools
from typing import Any
from dpsynth.eval import types
Expand Down
1 change: 1 addition & 0 deletions dpsynth/eval/one_way_distribution_computation.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"""Computes one-way marginal distances."""

from collections.abc import Iterable
import dataclasses
from typing import Any
from dpsynth.eval import types
from dpsynth.pipeline_transformations import diagnostic_info
Expand Down
4 changes: 4 additions & 0 deletions dpsynth/pipeline_transformations/diagnostic_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
"""Module for updating diagnostic information."""

import copy

from dpsynth.pipeline_transformations import types # pylint: disable=g-bad-import-order
import pipeline_dp # pylint: disable=g-bad-import-order

from dataclasses import dataclass, field
from typing import Optional

Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,6 @@ version = {attr = "dpsynth.__version__"}

[tool.setuptools.packages.find]
namespaces = false

[tool.pytest.ini_options]
addopts = "--import-mode=importlib"
180 changes: 0 additions & 180 deletions tests/bin/derive_domain_test.py

This file was deleted.

Loading