Skip to content

Commit

Permalink
Explicit imports
Browse files Browse the repository at this point in the history
  • Loading branch information
JelleAalbers committed Sep 16, 2022
1 parent 81fb4af commit 8079dfb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions paltas/generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import pandas as pd
from paltas.Configs.config_handler import ConfigHandler

from .Utils.cli_maker import make_cli
import Utils.cli_maker


def generate_from_config(config_path, save_folder, n=1, save_png_too=False, tf_record=False):
Expand Down Expand Up @@ -117,4 +117,4 @@ def generate_from_config(config_path, save_folder, n=1, save_png_too=False, tf_r


if __name__ == '__main__':
make_cli(generate_from_config)
Utils.cli_maker.make_cli(generate_from_config)
4 changes: 2 additions & 2 deletions paltas/robustness_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import string
import os

from .Utils.cli_maker import make_cli
import Utils.cli_maker

config_header = """\
import sys
Expand Down Expand Up @@ -208,4 +208,4 @@ def robustness_test(


if __name__ == '__main__':
make_cli(robustness_test)
Utils.cli_maker.make_cli(robustness_test)

0 comments on commit 8079dfb

Please sign in to comment.