Skip to content

Commit

Permalink
Fixed format
Browse files Browse the repository at this point in the history
  • Loading branch information
nvidianz committed Dec 21, 2024
1 parent bc4e010 commit 69a84a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nvflare/fuel/utils/fobs/fobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def _get_type_name(cls: Type) -> str:

def _load_class(type_name: str):
try:
module_name, class_name = type_name.rsplit('.', 1)
module_name, class_name = type_name.rsplit(".", 1)
module = importlib.import_module(module_name)

return getattr(module, class_name)
Expand Down

0 comments on commit 69a84a2

Please sign in to comment.