Skip to content

Commit b993088

Browse files
committed
Remove unnecessary variable declarations
1 parent 3e77cca commit b993088

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/apify/_actor.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,6 @@
5555
class _ActorType:
5656
"""The class of `Actor`. Only make a new instance if you're absolutely sure you need to."""
5757

58-
_apify_client: ApifyClientAsync
59-
_configuration: Configuration
60-
_is_exiting = False
6158
_is_rebooting = False
6259

6360
def __init__(
@@ -76,6 +73,8 @@ def __init__(
7673
be created.
7774
configure_logging: Should the default logging configuration be configured?
7875
"""
76+
self._is_exiting = False
77+
7978
self._configuration = configuration or Configuration.get_global_configuration()
8079
self._configure_logging = configure_logging
8180
self._apify_client = self.new_client()

0 commit comments

Comments
 (0)