Skip to content

Commit

Permalink
remove readfp, use read_file instead
Browse files Browse the repository at this point in the history
  • Loading branch information
WuShichao authored Aug 12, 2024
1 parent e9bdd6a commit f5800f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pycbc/types/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def __deepcopy__(self, memo):
self.write(config_string)
config_string.seek(0)
new_config = self.__class__()
new_config.readfp(config_string)
new_config.read_file(config_string)
return new_config


Expand Down

0 comments on commit f5800f5

Please sign in to comment.