We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e682518 commit e135493Copy full SHA for e135493
setup.py
@@ -1,5 +1,5 @@
1
-# -*- coding: utf-8 -*-
2
"""Setup module."""
+
3
import setuptools
4
5
if __name__ == "__main__":
src/pydab/util.py
@@ -7,5 +7,5 @@
7
def config_logger():
8
"""Configure logger using the config file."""
9
path = pathlib.Path(__file__).absolute().parent.joinpath("logging.yaml")
10
- with open(path, "r") as f:
+ with open(path) as f:
11
logging.config.dictConfig(yaml.safe_load(f.read()))
0 commit comments