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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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)