Skip to content

Commit

Permalink
Added cast to perform copy
Browse files Browse the repository at this point in the history
  • Loading branch information
drewsonne committed Apr 20, 2018
1 parent 0a71882 commit 429547c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion onelogin_aws_cli/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class ConfigurationFile(configparser.ConfigParser):
def __init__(self, config_file=None):
super().__init__(default_section='defaults')

self[self.default_section] = self.DEFAULTS
self[self.default_section] = dict(self.DEFAULTS)

self.file = config_file

Expand Down

0 comments on commit 429547c

Please sign in to comment.