Skip to content

Commit e8254cc

Browse files
authored
Remove unused constant PIPELINE_ID_PERMITTED_CHARACTERS (#506)
* Remove unused constant PIPELINE_ID_PERMITTED_CHARACTERS The reference to this constant was removed in #437. * Fix lint
1 parent dedc3c8 commit e8254cc

File tree

1 file changed

+0
-3
lines changed
  • databricks_cli/pipelines

1 file changed

+0
-3
lines changed

databricks_cli/pipelines/cli.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323

2424
import os
2525
import json
26-
import string
2726
import requests
2827

2928
try:
@@ -46,8 +45,6 @@
4645
except AttributeError: # Python 2
4746
json_parse_exception = ValueError
4847

49-
PIPELINE_ID_PERMITTED_CHARACTERS = set(string.ascii_letters + string.digits + '-_')
50-
5148

5249
@click.command(context_settings=CONTEXT_SETTINGS,
5350
short_help='Creates a pipeline.')

0 commit comments

Comments
 (0)