We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e91e368 commit d01dd80Copy full SHA for d01dd80
docs/example/static/StaticLibrary.py
@@ -5,8 +5,8 @@
5
6
7
class StaticLibrary:
8
- def __init__(self):
9
- self.separator = ";"
+ def __init__(self, separator: str = ";"):
+ self.separator = separator
10
11
def join_strings(self, *strings: str) -> str:
12
"""Joins args strings."""
0 commit comments