Procházet zdrojové kódy

cosmetic comment fix

Damien ACCORSI před 10 roky
rodič
revize
8390fb8dd9
1 změnil soubory, kde provedl 0 přidání a 1 odebrání
  1. 0 1
      tracim/tracim/lib/base.py

+ 0 - 1
tracim/tracim/lib/base.py Zobrazit soubor

42
 
42
 
43
     def url(self, id: int=None, subpath: str='', params:dict=None, skip_id=False) -> str:
43
     def url(self, id: int=None, subpath: str='', params:dict=None, skip_id=False) -> str:
44
         """
44
         """
45
-        burl means 'base url'
46
         return a standard REST URL for list or one item.
45
         return a standard REST URL for list or one item.
47
         If your mount point is /someitems, then this will return /someitems or /someitems/4 if id not None
46
         If your mount point is /someitems, then this will return /someitems or /someitems/4 if id not None
48
         if subpath is given, then it will be added at the end, eg /someitems/subpath or /someitems/4/subpath
47
         if subpath is given, then it will be added at the end, eg /someitems/subpath or /someitems/4/subpath