@@ -238,41 +238,41 @@ def site_runtime_path(self) -> Path:
238238 return Path (self .site_runtime_dir )
239239
240240 def iter_config_dirs (self ) -> Iterator [str ]:
241- """:yield: all user and site configuration directories"""
241+ """:yield: all user and site configuration directories. """
242242 yield self .user_config_dir
243243 yield self .site_config_dir
244244
245245 def iter_data_dirs (self ) -> Iterator [str ]:
246- """:yield: all user and site data directories"""
246+ """:yield: all user and site data directories. """
247247 yield self .user_data_dir
248248 yield self .site_data_dir
249249
250250 def iter_cache_dirs (self ) -> Iterator [str ]:
251- """:yield: all user and site cache directories"""
251+ """:yield: all user and site cache directories. """
252252 yield self .user_cache_dir
253253 yield self .site_cache_dir
254254
255255 def iter_runtime_dirs (self ) -> Iterator [str ]:
256- """:yield: all user and site runtime directories"""
256+ """:yield: all user and site runtime directories. """
257257 yield self .user_runtime_dir
258258 yield self .site_runtime_dir
259259
260260 def iter_config_paths (self ) -> Iterator [Path ]:
261- """:yield: all user and site configuration paths"""
261+ """:yield: all user and site configuration paths. """
262262 for path in self .iter_config_dirs ():
263263 yield Path (path )
264264
265265 def iter_data_paths (self ) -> Iterator [Path ]:
266- """:yield: all user and site data paths"""
266+ """:yield: all user and site data paths. """
267267 for path in self .iter_data_dirs ():
268268 yield Path (path )
269269
270270 def iter_cache_paths (self ) -> Iterator [Path ]:
271- """:yield: all user and site cache paths"""
271+ """:yield: all user and site cache paths. """
272272 for path in self .iter_cache_dirs ():
273273 yield Path (path )
274274
275275 def iter_runtime_paths (self ) -> Iterator [Path ]:
276- """:yield: all user and site runtime paths"""
276+ """:yield: all user and site runtime paths. """
277277 for path in self .iter_runtime_dirs ():
278278 yield Path (path )
0 commit comments