Skip to content

Commit

Permalink
Fix wrong relative path of setup.cfg from info tool
Browse files Browse the repository at this point in the history
  • Loading branch information
HealthyPear committed Mar 31, 2023
1 parent f2e4c43 commit b16e27c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ctapipe/tools/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
__all__ = ["info"]

conf = ConfigParser()
conf.read(Path(__file__).parent / Path("../../setup.cfg"))
conf.read(Path(__file__).parent / Path("../setup.cfg"))
setup_cfg_options = dict(conf.items("options"))
setup_cfg_options_extras = dict(conf.items("options.extras_require"))

Expand Down

0 comments on commit b16e27c

Please sign in to comment.