@@ -69,9 +69,10 @@ def to_native_path_linux(path):
6969 to_native_path = to_native_path_linux
7070
7171def join_path_native (a , * p ):
72- """As join path, but makes sure an OS native path is returned. This is only
73- needed to play it safe on my dear windows and to assure nice paths that only
74- use '\' """
72+ """
73+ As join path, but makes sure an OS native path is returned. This is only
74+ needed to play it safe on my dear windows and to assure nice paths that only
75+ use '\' """
7576 return to_native_path (join_path (a , * p ))
7677
7778def assure_directory_exists (path , is_file = False ):
@@ -187,10 +188,11 @@ def _main_actor(cls, env_name, env_email, config_reader=None):
187188
188189 @classmethod
189190 def committer (cls , config_reader = None ):
190- """:return: Actor instance corresponding to the configured committer. It behaves
191- similar to the git implementation, such that the environment will override
192- configuration values of config_reader. If no value is set at all, it will be
193- generated
191+ """
192+ :return: Actor instance corresponding to the configured committer. It behaves
193+ similar to the git implementation, such that the environment will override
194+ configuration values of config_reader. If no value is set at all, it will be
195+ generated
194196 :param config_reader: ConfigReader to use to retrieve the values from in case
195197 they are not set in the environment"""
196198 return cls ._main_actor (cls .env_committer_name , cls .env_committer_email , config_reader )
0 commit comments