Skip to content

Commit

Permalink
remove readfp, use read_file instead (#4852)
Browse files Browse the repository at this point in the history
  • Loading branch information
WuShichao authored Aug 12, 2024
1 parent e9bdd6a commit ff8e499
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 ff8e499

Please sign in to comment.