-
Notifications
You must be signed in to change notification settings - Fork 1
fix: case with special symbols in password #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
* Fixed a sad misspell in bumpversion config * Added Python 3.10 binary for GitHub actions * Trying to make coveralls work
docs: clarified the documentation fix: type hintings
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you please fix some issues described inside the review?
|
||
master_doc = "index" # It's important for RTFD | ||
exclude_patterns = [] | ||
exclude_patterns: list = [] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure we need to hint sphinx config :)
self._dsn = dsn | ||
self._raw_bits = None | ||
self._parsed_bits = {} | ||
self._raw_bits: ParseResult |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Again, not sure we should type-hint any internals.
return self.default_region | ||
|
||
def _parse_bucket_name(self) -> str: | ||
def _parse_bucket_name(self) -> Optional[str]: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perhaps, this shouldn't be an optional one.
return super()._is_host_given() | ||
|
||
def _parse_bucket_name(self) -> str: | ||
def _parse_bucket_name(self) -> Optional[str]: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually, I cannot even imagine the situation, when BUCKET is not presented inside S3 URLs. So, I'm pretty sure, everything related to a bucket should be mandatory rather than optional
20eb25e
to
c943d86
Compare
No description provided.