Skip to content

Commit

Permalink
FIX: code extra space
Browse files Browse the repository at this point in the history
  • Loading branch information
martins0n committed Sep 15, 2022
1 parent 2c35d75 commit 51b14ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion etna/core/mixins.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def _get_target_from_class(value: Any):

@staticmethod
def _get_target_from_function(value: Callable):
return str(value.__module__) + "." + str(value. __qualname__)
return str(value.__module__) + "." + str(value.__qualname__)

@staticmethod
def _parse_value(value: Any) -> Any:
Expand Down

0 comments on commit 51b14ca

Please sign in to comment.