Skip to content

Commit 8d362e8

Browse files
committed
🎨 Move advertising
1 parent dd83708 commit 8d362e8

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

docs/functions/decorators.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,6 @@ Line 1
6161
Line 7
6262
The wrapped function is called after the decorator function is finished.
6363

64-
.. tip::
65-
`cusy seminar: Advanced Python
66-
<https://cusy.io/en/our-training-courses/advanced-python>`_
67-
6864
``functools``
6965
-------------
7066

@@ -132,3 +128,7 @@ as decorators, such as:
132128
'wrapper'
133129
>>> example.__doc__
134130
'Wrapper docstring'
131+
132+
.. tip::
133+
`cusy seminar: Advanced Python
134+
<https://cusy.io/en/our-training-courses/advanced-python>`_

docs/oop/dataclasses.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@ and are a special shortcut with which we can create classes that store data.
66
Python offers a special :doc:`decorator <../functions/decorators>` if we want to
77
create such a class.
88

9-
.. tip::
10-
`cusy seminar: Advanced Python
11-
<https://cusy.io/en/our-training-courses/advanced-python>`_
12-
139
.. tip::
1410
For table data I generally use :doc:`pandas Series or DataFrames
1511
<Python4DataScience:workspace/pandas/data-structures>` and if I need to store
@@ -60,3 +56,7 @@ We will add a method to the class that creates an Item object from a
6056
... }
6157
>>> Item.from_dict(item_dict)
6258
Item(summary='My first item', owner='veit', state='todo', id=1)
59+
60+
.. tip::
61+
`cusy seminar: Advanced Python
62+
<https://cusy.io/en/our-training-courses/advanced-python>`_

0 commit comments

Comments
 (0)