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 8b935ca commit 2d05029Copy full SHA for 2d05029
python_anvil/api_resources/requests.py
@@ -164,16 +164,13 @@ def get_url(self):
164
165
166
class FullyQualifiedRequest(BaseAnvilHttpRequest):
167
- """A request class that validates URLs are fully qualified and point to Anvil domains."""
+ """A request class that validates URLs point to Anvil domains."""
168
169
VALID_HOSTS = [
170
"https://app.useanvil.com",
171
# Future Anvil specific URLs
172
]
173
174
- def __init__(self, client, options=None):
175
- super().__init__(client, options)
176
-
177
def get_url(self):
178
return "" # Not used since we expect full URLs
179
0 commit comments