doc: fix apparent copy-paste error in docstring (#5626)

This commit is contained in:
Gunnlaugur Thor Briem
2020-07-14 07:47:41 +00:00
committed by GitHub
parent f867000f56
commit cd30f98fd2

View File

@@ -17,8 +17,8 @@ USE_AMP = False
def train_command_factory(args: Namespace): def train_command_factory(args: Namespace):
""" """
Factory function used to instantiate serving server from provided command line arguments. Factory function used to instantiate training command from provided command line arguments.
:return: ServeCommand :return: TrainCommand
""" """
return TrainCommand(args) return TrainCommand(args)