Skip to content

Commit

Permalink
Add __future__ annotations (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
MooooCat committed Jan 16, 2024
1 parent 651b517 commit 3264d06
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions sdgx/metrics/column/base.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

import pandas as pd

from sdgx.log import logger
Expand Down
2 changes: 2 additions & 0 deletions sdgx/metrics/column/jsd.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

import numpy as np
import pandas as pd
from scipy.stats import entropy, gaussian_kde
Expand Down
2 changes: 2 additions & 0 deletions sdgx/metrics/multi_table/base.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

from sdgx.log import logger


Expand Down

0 comments on commit 3264d06

Please sign in to comment.