Skip to content

Commit

Permalink
feature: update yaml dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
u8slvn committed Jul 6, 2019
1 parent 61c14c8 commit 340ea90
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
requests==2.20.0
lxml==4.2.1
luma.led_matrix==1.0.5
pyyaml==3.13
pyyaml>=4.2b1
loguru==0.3.0
2 changes: 1 addition & 1 deletion rerwatcher/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def load_config():
"""
with open('config.yml', 'r') as ymlconf:
config = yaml.load(ymlconf)
config = yaml.load(ymlconf, Loader=yaml.FullLoader)

for section in config:
for param in config[section]:
Expand Down

0 comments on commit 340ea90

Please sign in to comment.